mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-21 08:32:01 +02:00
Initial commit: OCA Workflow Process packages (456 packages)
This commit is contained in:
commit
d366e42934
18799 changed files with 1284507 additions and 0 deletions
|
|
@ -0,0 +1,47 @@
|
|||
# Sale Automatic Workflow
|
||||
|
||||
Odoo addon: sale_automatic_workflow
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-sale-workflow-sale_automatic_workflow
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- sale_stock
|
||||
- sales_team
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Sale Automatic Workflow
|
||||
- **Version**: 16.0.1.1.1
|
||||
- **Category**: Sales Management
|
||||
- **License**: AGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/sale-workflow](https://github.com/OCA/sale-workflow) branch 16.0, addon `sale_automatic_workflow`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original AGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Reports: doc/REPORTS.md
|
||||
- Security: doc/SECURITY.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Sale_automatic_workflow Module - sale_automatic_workflow
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for sale_automatic_workflow. Configure related models, access rights, and options as needed.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [sale_stock](../../odoo-bringout-oca-ocb-sale_stock)
|
||||
- [sales_team](../../odoo-bringout-oca-ocb-sales_team)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon sale_automatic_workflow or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-sale-workflow-sale_automatic_workflow"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-sale-workflow-sale_automatic_workflow"
|
||||
```
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in sale_automatic_workflow.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class automatic_workflow_job
|
||||
class sale_workflow_process
|
||||
class account_move
|
||||
class sale_order
|
||||
class stock_move
|
||||
class stock_picking
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: sale_automatic_workflow. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon sale_automatic_workflow
|
||||
- License: LGPL-3
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in sale_automatic_workflow.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../sale_automatic_workflow/security/ir.model.access.csv)**
|
||||
- 4 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../sale_automatic_workflow/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon sale_automatic_workflow
|
||||
```
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-sale-workflow-sale_automatic_workflow"
|
||||
version = "16.0.0"
|
||||
description = "Sale Automatic Workflow - Odoo addon"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-sale-workflow-sale_stock>=16.0.0",
|
||||
"odoo-bringout-oca-ocb-sales_team>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["sale_automatic_workflow"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1,117 @@
|
|||
=======================
|
||||
Sale Automatic Workflow
|
||||
=======================
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:71fbe068284afd1d022428fafbae6726822dfb19f6eb06c8c38b0a45e28c599f
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||
:target: https://odoo-community.org/page/development-status
|
||||
:alt: Beta
|
||||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsale--workflow-lightgray.png?logo=github
|
||||
:target: https://github.com/OCA/sale-workflow/tree/16.0/sale_automatic_workflow
|
||||
:alt: OCA/sale-workflow
|
||||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
|
||||
:target: https://translation.odoo-community.org/projects/sale-workflow-16-0/sale-workflow-16-0-sale_automatic_workflow
|
||||
:alt: Translate me on Weblate
|
||||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
|
||||
:target: https://runboat.odoo-community.org/builds?repo=OCA/sale-workflow&target_branch=16.0
|
||||
:alt: Try me on Runboat
|
||||
|
||||
|badge1| |badge2| |badge3| |badge4| |badge5|
|
||||
|
||||
Create workflows with more or less automatization and apply it on sales
|
||||
orders.
|
||||
|
||||
A workflow can:
|
||||
|
||||
- Apply default values:
|
||||
|
||||
* Shipping Policy (Deliver each product when available or Deliver all products at once)
|
||||
* Set the invoice's date to the sale order's date
|
||||
* Set a sales team
|
||||
|
||||
- Apply automatic actions:
|
||||
|
||||
* Validate the order (only if paid, always, never)
|
||||
* Send order confirmation mail (only when order confirmed)
|
||||
* Create an invoice
|
||||
* Validate the invoice
|
||||
* Send the invoice via e-mail
|
||||
* Confirm the picking
|
||||
|
||||
This module is used by Magentoerpconnect and Prestashoperpconnect.
|
||||
It is well suited for other E-Commerce connectors as well.
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/sale-workflow/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us to smash it by providing a detailed and welcomed
|
||||
`feedback <https://github.com/OCA/sale-workflow/issues/new?body=module:%20sale_automatic_workflow%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Do not contact contributors directly about support or help with technical issues.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Authors
|
||||
~~~~~~~
|
||||
|
||||
* Akretion
|
||||
* Camptocamp
|
||||
* Sodexis
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Guewen Baconnier
|
||||
* Beau Sebastien
|
||||
* Leonardo Pistone
|
||||
* Stéphane Bidoul
|
||||
* Damien Crier
|
||||
* Alexandre Fayolle
|
||||
* Sodexis
|
||||
* Dave Lasley <dave@laslabs.com>
|
||||
* Akim Juillerat <akim.juillerat@camptocamp.com>
|
||||
* Thomas Fossoul <thomas@niboo.com>
|
||||
* Phuc Tran Thanh <phuc@trobz.com>
|
||||
* John Herholz <j.longneck@gmail.com>
|
||||
|
||||
Other credits
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
The development of this module has been financially supported by:
|
||||
|
||||
* Camptocamp
|
||||
|
||||
Maintainers
|
||||
~~~~~~~~~~~
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
This module is part of the `OCA/sale-workflow <https://github.com/OCA/sale-workflow/tree/16.0/sale_automatic_workflow>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import models
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
{
|
||||
"name": "Sale Automatic Workflow",
|
||||
"version": "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,
|
||||
}
|
||||
|
|
@ -0,0 +1,126 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!--
|
||||
Copyright (C) 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
-->
|
||||
<odoo noupdate="1">
|
||||
<record id="automatic_workflow_order_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Order Filter</field>
|
||||
<field name="model_id">sale.order</field>
|
||||
<field name="domain">[('state', '=', 'draft')]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_workflow_picking_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Picking Filter</field>
|
||||
<field name="model_id">stock.picking</field>
|
||||
<field
|
||||
name="domain"
|
||||
>[('state', 'in', ['draft', 'confirmed', 'assigned'])]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_workflow_create_invoice_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Create Invoice Filter</field>
|
||||
<field name="model_id">sale.order</field>
|
||||
<field
|
||||
name="domain"
|
||||
>[('state','in',['sale','done']),('invoice_status','=','to invoice')]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_workflow_validate_invoice_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Validate Invoice Filter</field>
|
||||
<field name="model_id">account.move</field>
|
||||
<field
|
||||
name="domain"
|
||||
>[('state', '=', 'draft'), ('posted_before', '=', False)]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_workflow_send_invoice_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Send Invoice Filter</field>
|
||||
<field name="model_id">account.move</field>
|
||||
<field
|
||||
name="domain"
|
||||
>[('state', '=', 'posted'), ('is_move_sent', '=', False), ('move_type', '=', 'out_invoice')]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_workflow_sale_done_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Sale Done Filter</field>
|
||||
<field name="model_id">sale.order</field>
|
||||
<field
|
||||
name="domain"
|
||||
>[('state', '=', 'sale'),('invoice_status','=','invoiced')]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_workflow_payment_filter" model="ir.filters">
|
||||
<field name="name">Automatic Workflow Payment Filter</field>
|
||||
<field name="model_id">account.move</field>
|
||||
<field
|
||||
name="domain"
|
||||
>[('state', '=', 'posted'), ('move_type', '=', 'out_invoice'), ('payment_state','!=','paid')]</field>
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
</record>
|
||||
<record id="automatic_validation" model="sale.workflow.process">
|
||||
<field name="name">Automatic</field>
|
||||
<field name="picking_policy">one</field>
|
||||
<field name="validate_order" eval="1" />
|
||||
<field name="send_order_confirmation_mail" eval="1" />
|
||||
<field name="order_filter_id" eval="automatic_workflow_order_filter" />
|
||||
<field name="create_invoice" eval="1" />
|
||||
<field
|
||||
name="create_invoice_filter_id"
|
||||
eval="automatic_workflow_create_invoice_filter"
|
||||
/>
|
||||
<field name="validate_invoice" eval="1" />
|
||||
<field
|
||||
name="validate_invoice_filter_id"
|
||||
eval="automatic_workflow_validate_invoice_filter"
|
||||
/>
|
||||
<field name="send_invoice" eval="1" />
|
||||
<field
|
||||
name="send_invoice_filter_id"
|
||||
eval="automatic_workflow_send_invoice_filter"
|
||||
/>
|
||||
<field name="invoice_date_is_order_date" eval="0" />
|
||||
<field name="validate_picking" eval="0" />
|
||||
<field name="picking_filter_id" eval="automatic_workflow_picking_filter" />
|
||||
<field name="sale_done" eval="0" />
|
||||
<field name="sale_done_filter_id" eval="automatic_workflow_sale_done_filter" />
|
||||
<field name="register_payment" eval="0" />
|
||||
<field name="payment_filter_id" ref="automatic_workflow_payment_filter" />
|
||||
<field
|
||||
name="warning"
|
||||
>Be careful, if you save the order with this setting, it could be auto-confirmed, even if you are editing it.</field>
|
||||
</record>
|
||||
<record id="manual_validation" model="sale.workflow.process">
|
||||
<field name="name">Manual</field>
|
||||
<field name="picking_policy">one</field>
|
||||
<field name="validate_order" eval="0" />
|
||||
<field name="validate_invoice" eval="0" />
|
||||
<field name="invoice_date_is_order_date" eval="0" />
|
||||
<field name="validate_picking" eval="0" />
|
||||
<field name="order_filter_id" eval="automatic_workflow_order_filter" />
|
||||
<field
|
||||
name="create_invoice_filter_id"
|
||||
eval="automatic_workflow_create_invoice_filter"
|
||||
/>
|
||||
<field
|
||||
name="validate_invoice_filter_id"
|
||||
eval="automatic_workflow_validate_invoice_filter"
|
||||
/>
|
||||
<field name="picking_filter_id" eval="automatic_workflow_picking_filter" />
|
||||
<field name="sale_done_filter_id" eval="automatic_workflow_sale_done_filter" />
|
||||
<field name="register_payment" eval="0" />
|
||||
<field name="payment_filter_id" ref="automatic_workflow_payment_filter" />
|
||||
</record>
|
||||
<record forcecreate="True" id="ir_cron_automatic_workflow_job" model="ir.cron">
|
||||
<field name="name">Automatic Workflow Job</field>
|
||||
<field ref="model_automatic_workflow_job" name="model_id" />
|
||||
<field name="state">code</field>
|
||||
<field name="code">model.run()</field>
|
||||
<field eval="True" name="active" />
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
<field name="interval_number">1</field>
|
||||
<field name="interval_type">minutes</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field eval="False" name="doall" />
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-09-10 02:47+0000\n"
|
||||
"PO-Revision-Date: 2016-09-10 02:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
|
||||
msgid "Automatic Workflow Job"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
|
||||
msgid ""
|
||||
"Be careful, if you save the order with this setting, it could be auto-"
|
||||
"confirmed, even if you are editing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
|
||||
msgid "Confirm and Transfer Picking"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
|
||||
msgid "Create Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
|
||||
msgid "Create Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
|
||||
msgid "Deliver all products at once"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
|
||||
msgid "Deliver each product when available"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "Force Invoice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid ""
|
||||
"If set, displays the message when an userselects the process on a sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid ""
|
||||
"If this box is checked, when the first invoice is created The service sale "
|
||||
"order lines will be included and will be marked as delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Invoice Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid "Invoice Service on delivery"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Order Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
|
||||
msgid "Order Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
|
||||
msgid "Order Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
|
||||
msgid "Picking Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
|
||||
msgid "Register Payment Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
|
||||
msgid "Sale Done Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
|
||||
msgid "Sale Done Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
|
||||
msgid "Sale Workflow Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
|
||||
msgid ""
|
||||
"Scheduler that will play automatically the validation of invoices, "
|
||||
"pickings..."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
|
||||
msgid "Send Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
|
||||
msgid "Send Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
|
||||
msgid "Send Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid "Send Order Confirmation Mail"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Set default journal to use on invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Set selection based on a search filter:"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
|
||||
msgid "Shipping Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
|
||||
msgid "Validate Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
|
||||
msgid "Validate Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid ""
|
||||
"When checked, after order confirmation, a confirmation email will be sent "
|
||||
"(if not already sent)."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "When checked, the invoice date will be the same than the order's date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Workflow Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
|
||||
msgid "Automatic Workflow Job"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
|
||||
msgid ""
|
||||
"Be careful, if you save the order with this setting, it could be auto-"
|
||||
"confirmed, even if you are editing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
|
||||
msgid "Confirm and Transfer Picking"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
|
||||
msgid "Create Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
|
||||
msgid "Create Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
|
||||
msgid "Deliver all products at once"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
|
||||
msgid "Deliver each product when available"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "Force Invoice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid ""
|
||||
"If set, displays the message when an userselects the process on a sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid ""
|
||||
"If this box is checked, when the first invoice is created The service sale "
|
||||
"order lines will be included and will be marked as delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Invoice Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid "Invoice Service on delivery"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Order Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
|
||||
msgid "Order Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
|
||||
msgid "Order Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
|
||||
msgid "Picking Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
|
||||
msgid "Register Payment Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
|
||||
msgid "Sale Done Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
|
||||
msgid "Sale Done Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
|
||||
msgid "Sale Workflow Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
|
||||
msgid ""
|
||||
"Scheduler that will play automatically the validation of invoices, "
|
||||
"pickings..."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
|
||||
msgid "Send Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
|
||||
msgid "Send Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
|
||||
msgid "Send Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid "Send Order Confirmation Mail"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Set default journal to use on invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Set selection based on a search filter:"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
|
||||
msgid "Shipping Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
|
||||
msgid "Validate Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
|
||||
msgid "Validate Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid ""
|
||||
"When checked, after order confirmation, a confirmation email will be sent "
|
||||
"(if not already sent)."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "When checked, the invoice date will be the same than the order's date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Workflow Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "فاتورة"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
|
||||
msgid "Automatic Workflow Job"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
|
||||
msgid ""
|
||||
"Be careful, if you save the order with this setting, it could be auto-"
|
||||
"confirmed, even if you are editing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
|
||||
msgid "Confirm and Transfer Picking"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
|
||||
msgid "Create Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
|
||||
msgid "Create Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
|
||||
msgid "Deliver all products at once"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
|
||||
msgid "Deliver each product when available"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "Force Invoice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid ""
|
||||
"If set, displays the message when an userselects the process on a sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid ""
|
||||
"If this box is checked, when the first invoice is created The service sale "
|
||||
"order lines will be included and will be marked as delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Invoice Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid "Invoice Service on delivery"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно променено на"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Order Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
|
||||
msgid "Order Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
|
||||
msgid "Order Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
|
||||
msgid "Picking Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
|
||||
msgid "Register Payment Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
|
||||
msgid "Sale Done Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
|
||||
msgid "Sale Done Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
|
||||
msgid "Sale Workflow Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
|
||||
msgid ""
|
||||
"Scheduler that will play automatically the validation of invoices, "
|
||||
"pickings..."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
|
||||
msgid "Send Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
|
||||
msgid "Send Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
|
||||
msgid "Send Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid "Send Order Confirmation Mail"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Set default journal to use on invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Set selection based on a search filter:"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
|
||||
msgid "Shipping Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
|
||||
msgid "Validate Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
|
||||
msgid "Validate Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid ""
|
||||
"When checked, after order confirmation, a confirmation email will be sent "
|
||||
"(if not already sent)."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "When checked, the invoice date will be the same than the order's date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Workflow Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "Фактура"
|
||||
|
|
@ -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 "Sve količine isporučene"
|
||||
|
||||
#. 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 "Automatski hodogram"
|
||||
|
||||
#. 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 "Posao automatskog toka rada"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr "Informacije o automatizaciji"
|
||||
|
||||
#. 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 "Potvrdi i prenesi preuzimanje"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr "Kreiraj 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 "Filter kreiranja fakture"
|
||||
|
||||
#. 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 "Domen filter kreiranja fakture"
|
||||
|
||||
#. 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 "Isporuči sve proizvode odjednom"
|
||||
|
||||
#. 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 "Isporuči svaki proizvod kada je dostupan"
|
||||
|
||||
#. 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 "Domena"
|
||||
|
||||
#. 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 "Forsiraj datum fakture"
|
||||
|
||||
#. 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 "Opcije fakturisanja"
|
||||
|
||||
#. 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 "Fakturiši uslugu pri isporuci"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Žurnal"
|
||||
|
||||
#. 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 "Konfiguracija 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 "Filter naloga"
|
||||
|
||||
#. 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 "Domen filter naloga"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr "Filter preuzimanja"
|
||||
|
||||
#. 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 "Domen filter preuzimanja"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr "Registracija uplate"
|
||||
|
||||
#. 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 "Filter registracije plaćanja fakture"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr "Prodaja završena"
|
||||
|
||||
#. 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 "Filter završene prodaje"
|
||||
|
||||
#. 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 "Domen filter završene prodaje"
|
||||
|
||||
#. 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 toka rada prodaje"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr "Dnevnik prodaje"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr "Prodajni tim"
|
||||
|
||||
#. 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 "Pošalji fakturu"
|
||||
|
||||
#. 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 "Filter slanja fakture"
|
||||
|
||||
#. 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 "Domen filter slanja fakture"
|
||||
|
||||
#. 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 "Pošalji email potvrde naloga"
|
||||
|
||||
#. 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 "Postavi defaultni dnevnik za korišćenje na fakturi"
|
||||
|
||||
#. 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 "Postaviti odabir baziran na filter pretrage:"
|
||||
|
||||
#. 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 "Prijenos"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr "Validaj fakturu"
|
||||
|
||||
#. 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 "Filter validacije fakture"
|
||||
|
||||
#. 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 "Domen filter validacije fakture"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr "Provjeri valjanost narudžbe"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr "Poruka upozorenja"
|
||||
|
||||
#. 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 "Kada je označeno, datum fakture će biti isti kao datum 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 toka rada"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr "Upozorenje toka rada"
|
||||
|
|
@ -0,0 +1,372 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2020-11-06 13:08+0000\n"
|
||||
"Last-Translator: brendapaniagua <brenda.paniagua@qubiq.es>\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr "Totes les quantitats lliurades"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Flux de treball automàtic"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"ca_ES/)\n"
|
||||
"Language: ca_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
|
||||
msgid "Automatic Workflow Job"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
|
||||
msgid ""
|
||||
"Be careful, if you save the order with this setting, it could be auto-"
|
||||
"confirmed, even if you are editing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
|
||||
msgid "Confirm and Transfer Picking"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
|
||||
msgid "Create Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
|
||||
msgid "Create Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
|
||||
msgid "Deliver all products at once"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
|
||||
msgid "Deliver each product when available"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "Force Invoice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid ""
|
||||
"If set, displays the message when an userselects the process on a sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid ""
|
||||
"If this box is checked, when the first invoice is created The service sale "
|
||||
"order lines will be included and will be marked as delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Invoice Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid "Invoice Service on delivery"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Order Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
|
||||
msgid "Order Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
|
||||
msgid "Order Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
|
||||
msgid "Picking Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
|
||||
msgid "Register Payment Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
|
||||
msgid "Sale Done Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
|
||||
msgid "Sale Done Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
|
||||
msgid "Sale Workflow Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
|
||||
msgid ""
|
||||
"Scheduler that will play automatically the validation of invoices, "
|
||||
"pickings..."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
|
||||
msgid "Send Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
|
||||
msgid "Send Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
|
||||
msgid "Send Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid "Send Order Confirmation Mail"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Set default journal to use on invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Set selection based on a search filter:"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
|
||||
msgid "Shipping Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
|
||||
msgid "Validate Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
|
||||
msgid "Validate Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid ""
|
||||
"When checked, after order confirmation, a confirmation email will be sent "
|
||||
"(if not already sent)."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "When checked, the invoice date will be the same than the order's date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Workflow Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
|
||||
msgid "Automatic Workflow Job"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
|
||||
msgid ""
|
||||
"Be careful, if you save the order with this setting, it could be auto-"
|
||||
"confirmed, even if you are editing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
|
||||
msgid "Confirm and Transfer Picking"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
|
||||
msgid "Create Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
|
||||
msgid "Create Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
|
||||
msgid "Deliver all products at once"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
|
||||
msgid "Deliver each product when available"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "Force Invoice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid ""
|
||||
"If set, displays the message when an userselects the process on a sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid ""
|
||||
"If this box is checked, when the first invoice is created The service sale "
|
||||
"order lines will be included and will be marked as delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Invoice Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid "Invoice Service on delivery"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
|
||||
msgid "Name"
|
||||
msgstr "Název"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Order Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
|
||||
msgid "Order Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
|
||||
msgid "Order Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
|
||||
msgid "Picking Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
|
||||
msgid "Register Payment Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
|
||||
msgid "Sale Done Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
|
||||
msgid "Sale Done Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
|
||||
msgid "Sale Workflow Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
|
||||
msgid ""
|
||||
"Scheduler that will play automatically the validation of invoices, "
|
||||
"pickings..."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
|
||||
msgid "Send Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
|
||||
msgid "Send Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
|
||||
msgid "Send Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid "Send Order Confirmation Mail"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Set default journal to use on invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Set selection based on a search filter:"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
|
||||
msgid "Shipping Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
|
||||
msgid "Validate Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
|
||||
msgid "Validate Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid ""
|
||||
"When checked, after order confirmation, a confirmation email will be sent "
|
||||
"(if not already sent)."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "When checked, the invoice date will be the same than the order's date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Workflow Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Invoice"
|
||||
#~ msgstr "Faktura"
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_automatic_workflow.ir_cron_automatic_workflow_job
|
||||
msgid "Automatic Workflow Job"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_order_view_form
|
||||
msgid "Automation Information"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:sale.workflow.process,warning:sale_automatic_workflow.automatic_validation
|
||||
msgid ""
|
||||
"Be careful, if you save the order with this setting, it could be auto-"
|
||||
"confirmed, even if you are editing it."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_picking
|
||||
msgid "Confirm and Transfer Picking"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice
|
||||
msgid "Create Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_id
|
||||
msgid "Create Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_invoice_filter_domain
|
||||
msgid "Create Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__create_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__one
|
||||
msgid "Deliver all products at once"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields.selection,name:sale_automatic_workflow.selection__sale_workflow_process__picking_policy__direct
|
||||
msgid "Deliver each product when available"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__display_name
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_domain
|
||||
msgid "Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "Force Invoice Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid ""
|
||||
"If set, displays the message when an userselects the process on a sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid ""
|
||||
"If this box is checked, when the first invoice is created The service sale "
|
||||
"order lines will be included and will be marked as delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Invoice Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__invoice_service_delivery
|
||||
msgid "Invoice Service on delivery"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job____last_update
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_uid
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_automatic_workflow_job__write_date
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__name
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Order Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_id
|
||||
msgid "Order Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__order_filter_domain
|
||||
msgid "Order Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_id
|
||||
msgid "Picking Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_filter_domain
|
||||
msgid "Picking Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__register_payment
|
||||
msgid "Register Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__payment_filter_id
|
||||
msgid "Register Payment Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done
|
||||
msgid "Sale Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_id
|
||||
msgid "Sale Done Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__sale_done_filter_domain
|
||||
msgid "Sale Done Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_workflow_process
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_bank_statement_line__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_move__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_account_payment__workflow_process_id
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_stock_picking__workflow_process_id
|
||||
msgid "Sale Workflow Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Sales Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__team_id
|
||||
msgid "Sales Team"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_automatic_workflow_job
|
||||
msgid ""
|
||||
"Scheduler that will play automatically the validation of invoices, "
|
||||
"pickings..."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice
|
||||
msgid "Send Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_id
|
||||
msgid "Send Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_invoice_filter_domain
|
||||
msgid "Send Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid "Send Order Confirmation Mail"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__property_journal_id
|
||||
msgid "Set default journal to use on invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Set selection based on a search filter:"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__picking_policy
|
||||
msgid "Shipping Policy"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_move
|
||||
msgid "Stock Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model,name:sale_automatic_workflow.model_stock_picking
|
||||
msgid "Transfer"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice
|
||||
msgid "Validate Invoice"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_id
|
||||
msgid "Validate Invoice Filter"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_invoice_filter_domain
|
||||
msgid "Validate Invoice Filter Domain"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__validate_order
|
||||
msgid "Validate Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_workflow_process__warning
|
||||
msgid "Warning Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__send_order_confirmation_mail
|
||||
msgid ""
|
||||
"When checked, after order confirmation, a confirmation email will be sent "
|
||||
"(if not already sent)."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,help:sale_automatic_workflow.field_sale_workflow_process__invoice_date_is_order_date
|
||||
msgid "When checked, the invoice date will be the same than the order's date"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Workflow Options"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#. odoo-python
|
||||
#: code:addons/sale_automatic_workflow/models/sale_order.py:0
|
||||
#, python-format
|
||||
msgid "Workflow Warning"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,363 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2024-04-10 15:37+0000\n"
|
||||
"Last-Translator: jappi00 <jappi2000@ewetel.net>\n"
|
||||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr "Alle Mengen ausgeliefert"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Automatischer Workflow"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,348 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/"
|
||||
"el_GR/)\n"
|
||||
"Language: el_GR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/"
|
||||
"teams/23907/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,382 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2023-11-29 04:58+0000\n"
|
||||
"Last-Translator: kikopeiro <francisco.peiro@factorlibre.com>\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.17\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr "Todas las cantidades entregadas"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Flujo automático"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_AR/)\n"
|
||||
"Language: es_AR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/"
|
||||
"teams/23907/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_ES/)\n"
|
||||
"Language: es_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,346 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
# Juan González <bifomania@protonmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-29 19:24+0000\n"
|
||||
"PO-Revision-Date: 2016-11-29 19:24+0000\n"
|
||||
"Last-Translator: Juan González <bifomania@protonmail.com>, 2016\n"
|
||||
"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_MX/)\n"
|
||||
"Language: es_MX\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/"
|
||||
"es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 ""
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 ""
|
||||
|
|
@ -0,0 +1,347 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,381 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
# Quentin THEURET <odoo@kerpeo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2024-03-13 13:35+0000\n"
|
||||
"Last-Translator: Pierre-François Teyssier <pierre-francois@scalizer.fr>\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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/"
|
||||
"gl_ES/)\n"
|
||||
"Language: gl_ES\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 ""
|
||||
|
|
@ -0,0 +1,351 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2024-08-19 10:42+0000\n"
|
||||
"Last-Translator: uvid-gordana <gordana@uvid.hr>\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"
|
||||
|
|
@ -0,0 +1,346 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/"
|
||||
"hr_HR/)\n"
|
||||
"Language: hr_HR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,347 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,359 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2024-07-09 09:58+0000\n"
|
||||
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.6.2\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr "Tutte le quantità consegnate"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Flusso di lavoro automatico"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 "請求書"
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,343 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/"
|
||||
"teams/23907/lt_LT/)\n"
|
||||
"Language: lt_LT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
|
||||
"%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : "
|
||||
"2);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 "Фактура"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 "Нэхэмжлэл"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,347 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,350 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2024-02-18 12:37+0000\n"
|
||||
"Last-Translator: Bosd <c5e2fd43-d292-4c90-9d1f-74ff3436329a@anonaddy.me>\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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,377 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2024-05-22 00:02+0000\n"
|
||||
"Last-Translator: Rodrigo Macedo <sottomaiormacedotec@users.noreply."
|
||||
"translation.odoo-community.org>\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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-23 01:51+0000\n"
|
||||
"PO-Revision-Date: 2017-11-23 01:51+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
|
||||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/"
|
||||
"teams/23907/pt_PT/)\n"
|
||||
"Language: pt_PT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,348 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,346 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 "Счет"
|
||||
|
|
@ -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 ""
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,349 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2023-04-11 13:22+0000\n"
|
||||
"Last-Translator: Matjaz Mozetic <matjaz@luxim.si>\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 4.14.1\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Samodejni delotok"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,346 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Slovenian (Slovenia) (https://www.transifex.com/oca/"
|
||||
"teams/23907/sl_SI/)\n"
|
||||
"Language: sl_SI\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,343 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/"
|
||||
"sr@latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 "ใบแจ้งหนี้"
|
||||
|
|
@ -0,0 +1,347 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Otomatik İş akışı"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,348 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/"
|
||||
"tr_TR/)\n"
|
||||
"Language: tr_TR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "Otomatik iş akışı"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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 ""
|
||||
|
|
@ -0,0 +1,341 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:46+0000\n"
|
||||
"PO-Revision-Date: 2016-11-22 23:46+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 ""
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: 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"
|
||||
|
|
@ -0,0 +1,369 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2020-07-08 09:19+0000\n"
|
||||
"Last-Translator: 黎伟杰 <674416404@qq.com>\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/"
|
||||
"zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 3.10\n"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__all_qty_delivered
|
||||
msgid "All quantities delivered"
|
||||
msgstr "所有已交货数量"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.act_window,name:sale_automatic_workflow.act_sale_workflow_process_form
|
||||
#: model:ir.model.fields,field_description:sale_automatic_workflow.field_sale_order__workflow_process_id
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_act_sale_workflow_process_form
|
||||
#: model:ir.ui.menu,name:sale_automatic_workflow.menu_sale_workflow_parent
|
||||
#: model_terms:ir.ui.view,arch_db:sale_automatic_workflow.sale_workflow_process_view_form
|
||||
msgid "Automatic Workflow"
|
||||
msgstr "自动化工作流"
|
||||
|
||||
#. module: sale_automatic_workflow
|
||||
#: model:ir.actions.server,name:sale_automatic_workflow.ir_cron_automatic_workflow_job_ir_actions_server
|
||||
#: 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"
|
||||
|
|
@ -0,0 +1,345 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_automatic_workflow
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 9.0c\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-31 01:43+0000\n"
|
||||
"PO-Revision-Date: 2016-12-31 01:43+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n"
|
||||
"Language-Team: 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 "發票"
|
||||
|
|
@ -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
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class AccountMove(models.Model):
|
||||
_inherit = "account.move"
|
||||
|
||||
workflow_process_id = fields.Many2one(
|
||||
comodel_name="sale.workflow.process", string="Sale Workflow Process"
|
||||
)
|
||||
|
|
@ -0,0 +1,287 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
import logging
|
||||
from contextlib import contextmanager
|
||||
|
||||
from odoo import api, fields, models
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
@contextmanager
|
||||
def savepoint(cr):
|
||||
"""Open a savepoint on the cursor, then yield.
|
||||
|
||||
Warning: using this method, the exceptions are logged then discarded.
|
||||
"""
|
||||
try:
|
||||
with cr.savepoint():
|
||||
yield
|
||||
except Exception:
|
||||
_logger.exception("Error during an automatic workflow action.")
|
||||
|
||||
|
||||
class AutomaticWorkflowJob(models.Model):
|
||||
"""Scheduler that will play automatically the validation of
|
||||
invoices, pickings..."""
|
||||
|
||||
_name = "automatic.workflow.job"
|
||||
_description = (
|
||||
"Scheduler that will play automatically the validation of"
|
||||
" invoices, pickings..."
|
||||
)
|
||||
|
||||
def _do_validate_sale_order(self, sale, domain_filter):
|
||||
"""Validate a sales order, filter ensure no duplication"""
|
||||
if not self.env["sale.order"].search_count(
|
||||
[("id", "=", sale.id)] + domain_filter
|
||||
):
|
||||
return "{} {} 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
|
||||
|
|
@ -0,0 +1,75 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
|
||||
|
||||
class 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)
|
||||
|
|
@ -0,0 +1,144 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class SaleWorkflowProcess(models.Model):
|
||||
"""A workflow process is the setup of the automation of a sales order.
|
||||
|
||||
Each sales order can be linked to a workflow process.
|
||||
Then, the options of the workflow will change how the sales order
|
||||
behave, and how it is automatized.
|
||||
|
||||
A workflow process may be linked with a Sales payment method, so
|
||||
each time a payment method is used, the workflow will be applied.
|
||||
"""
|
||||
|
||||
_name = "sale.workflow.process"
|
||||
_description = "Sale Workflow Process"
|
||||
|
||||
@api.model
|
||||
def _default_filter(self, xmlid):
|
||||
record = self.env.ref(xmlid, raise_if_not_found=False)
|
||||
if record:
|
||||
return record
|
||||
return self.env["ir.filters"].browse()
|
||||
|
||||
name = fields.Char(required=True)
|
||||
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",
|
||||
)
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import 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
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
# Copyright 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
# Copyright 2013 Camptocamp SA (author: Guewen Baconnier)
|
||||
# Copyright 2016 Sodexis
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||
|
||||
from odoo import fields, models
|
||||
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
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
* Guewen Baconnier
|
||||
* Beau Sebastien
|
||||
* Leonardo Pistone
|
||||
* Stéphane Bidoul
|
||||
* Damien Crier
|
||||
* Alexandre Fayolle
|
||||
* Sodexis
|
||||
* Dave Lasley <dave@laslabs.com>
|
||||
* Akim Juillerat <akim.juillerat@camptocamp.com>
|
||||
* Thomas Fossoul <thomas@niboo.com>
|
||||
* Phuc Tran Thanh <phuc@trobz.com>
|
||||
* John Herholz <j.longneck@gmail.com>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
The development of this module has been financially supported by:
|
||||
|
||||
* Camptocamp
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue