mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-22 02:32:03 +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
47
odoo-bringout-oca-sale-workflow-sale_exception/README.md
Normal file
47
odoo-bringout-oca-sale-workflow-sale_exception/README.md
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# Sale Exception
|
||||
|
||||
Odoo addon: sale_exception
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-sale-workflow-sale_exception
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- sale
|
||||
- base_exception
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Sale Exception
|
||||
- **Version**: 16.0.2.0.0
|
||||
- **Category**: Generic Modules/Sale
|
||||
- **License**: AGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/sale-workflow](https://github.com/OCA/sale-workflow) branch 16.0, addon `sale_exception`.
|
||||
|
||||
## 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_exception Module - sale_exception
|
||||
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_exception. 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](../../odoo-bringout-oca-ocb-sale)
|
||||
- [base_exception](../../odoo-bringout-oca-server-tools-base_exception)
|
||||
|
|
@ -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_exception or install in UI.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-sale-workflow-sale_exception"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-sale-workflow-sale_exception"
|
||||
```
|
||||
14
odoo-bringout-oca-sale-workflow-sale_exception/doc/MODELS.md
Normal file
14
odoo-bringout-oca-sale-workflow-sale_exception/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in sale_exception.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class sale_order
|
||||
class sale_order_line
|
||||
class exception_rule
|
||||
```
|
||||
|
||||
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_exception. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon sale_exception
|
||||
- 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_exception.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../sale_exception/security/ir.model.access.csv)**
|
||||
- 1 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_exception/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_exception
|
||||
```
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
# Wizards
|
||||
|
||||
Transient models exposed as UI wizards in sale_exception.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class SaleExceptionConfirm
|
||||
```
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-sale-workflow-sale_exception"
|
||||
version = "16.0.0"
|
||||
description = "Sale Exception - Custom exceptions on sale order"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-sale>=16.0.0",
|
||||
"odoo-bringout-oca-sale-workflow-base_exception>=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_exception"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
|
|
@ -0,0 +1,146 @@
|
|||
==============
|
||||
Sale Exception
|
||||
==============
|
||||
|
||||
..
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! This file is generated by oca-gen-addon-readme !!
|
||||
!! changes will be overwritten. !!
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
!! source digest: sha256:ffacc5ccb541b86886b5c3bdd1e8a6cdbf75578eca58474048aa2ea7f4cad18d
|
||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
.. |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_exception
|
||||
: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_exception
|
||||
: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|
|
||||
|
||||
This module allows you attach several customizable exceptions to your
|
||||
sale order in a way that you can filter orders by exceptions type and fix them.
|
||||
|
||||
This is especially useful in an scenario for mass sales order import because
|
||||
it's likely some orders have errors when you import them (like product not
|
||||
found in Odoo, wrong line format etc.)
|
||||
|
||||
**Table of contents**
|
||||
|
||||
.. contents::
|
||||
:local:
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
If you are going to use Customer sale warning and Product warning,
|
||||
for setting corresponding information, you need to:
|
||||
|
||||
#. Go to *Settings > User & Companies > Users*.
|
||||
#. Edit your user.
|
||||
#. Check "A warning can be set on a product or a customer (Sale)" group.
|
||||
#. Install sale_management addon.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
Not Enough Virtual Stock:
|
||||
#. Go to *Sales > Products > Products*.
|
||||
#. Create new storable product without stock available.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Add product without stock available.
|
||||
#. An exception will be displayed.
|
||||
|
||||
No ZIP code on destination:
|
||||
#. Go to *Contacts*.
|
||||
#. Edit or create new contact.
|
||||
#. Set empty zip code.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Set delivery address with no zip code.
|
||||
#. An exception will be displayed.
|
||||
|
||||
Product warning:
|
||||
#. Go to *Sales > Products > Products*.
|
||||
#. Edit or create new product.
|
||||
#. Go to *Sales* tab.
|
||||
#. Set your desired warning option under the *Warning when Selling this Product* group.
|
||||
#. Set some warning message.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Add product with warning message.
|
||||
#. An exception will be displayed.
|
||||
|
||||
Partner warning:
|
||||
#. Go to *Contacts*.
|
||||
#. Edit or create new contact.
|
||||
#. Go to *Internal notes* tab.
|
||||
#. Set warning option according to *Warning on the Sales Order* group.
|
||||
#. Set some warning message.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Set partner with warning message.
|
||||
#. An exception will be displayed.
|
||||
|
||||
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_exception%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
|
||||
* Sodexis
|
||||
* Camptocamp
|
||||
|
||||
Contributors
|
||||
~~~~~~~~~~~~
|
||||
|
||||
* Raphaël Valyi <raphael.valyi@akretion.com>
|
||||
* Renato Lima <renato.lima@akretion.com>
|
||||
* Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
* Simone Orsi <simahawk@gmail.com>
|
||||
* SodexisTeam <dev@sodexis.com>
|
||||
* Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
|
||||
* Raphaël Reverdy <raphael.reverdy@akretion.com>
|
||||
* Florian da Costa <florian.dacosta@akretion.com>
|
||||
* Iván Todorovich <ivan.todorovich@druidoo.io>
|
||||
|
||||
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_exception>`_ project on GitHub.
|
||||
|
||||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
||||
from . import models
|
||||
from . import wizard
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
# Copyright 2011 Akretion, Sodexis
|
||||
# Copyright 2018 Akretion
|
||||
# Copyright 2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
{
|
||||
"name": "Sale Exception",
|
||||
"summary": "Custom exceptions on sale order",
|
||||
"version": "16.0.2.0.0",
|
||||
"category": "Generic Modules/Sale",
|
||||
"author": "Akretion, "
|
||||
"Sodexis, "
|
||||
"Camptocamp, "
|
||||
"Odoo Community Association (OCA)",
|
||||
"website": "https://github.com/OCA/sale-workflow",
|
||||
"depends": ["sale", "base_exception"],
|
||||
"license": "AGPL-3",
|
||||
"data": [
|
||||
"security/ir.model.access.csv",
|
||||
"data/sale_exception_data.xml",
|
||||
"wizard/sale_exception_confirm_view.xml",
|
||||
"views/sale_view.xml",
|
||||
],
|
||||
"demo": ["demo/sale_exception_demo.xml"],
|
||||
}
|
||||
|
|
@ -0,0 +1,50 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<!-- License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
||||
<odoo noupdate="1">
|
||||
<record forcecreate="True" id="ir_cron_test_orders" model="ir.cron">
|
||||
<field name="name">Test Draft Orders</field>
|
||||
<field name="active" eval="False" />
|
||||
<field name="user_id" ref="base.user_root" />
|
||||
<field name="interval_number">20</field>
|
||||
<field name="interval_type">minutes</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field eval="False" name="doall" />
|
||||
<field name="model_id" ref="sale.model_sale_order" />
|
||||
<field name="state">code</field>
|
||||
<field name="code">model.test_all_draft_orders()</field>
|
||||
</record>
|
||||
<record id="excep_no_zip" model="exception.rule">
|
||||
<field name="name">No ZIP code on destination</field>
|
||||
<field name="description">No ZIP code on destination</field>
|
||||
<field name="sequence">50</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="code">failed=not self.partner_shipping_id.zip</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
<record id="excep_no_stock" model="exception.rule">
|
||||
<field name="name">Not Enough Virtual Stock</field>
|
||||
<field name="description">Not Enough Virtual Stock</field>
|
||||
<field name="sequence">50</field>
|
||||
<field name="model">sale.order.line</field>
|
||||
<field
|
||||
name="code"
|
||||
>failed=self.product_id and self.product_id.type == 'product' and self.virtual_available_at_date < self.product_uom_qty</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
<record id="exception_partner_sale_warning" model="exception.rule">
|
||||
<field name="name">Customer sale warning</field>
|
||||
<field name="description">The customer has a sale warning in his form</field>
|
||||
<field name="sequence">40</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="code">failed=self.partner_id.sale_warn == "warning"</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
<record id="exception_product_sale_warning" model="exception.rule">
|
||||
<field name="name">Product warning</field>
|
||||
<field name="description">The product has a warning in his form</field>
|
||||
<field name="sequence">40</field>
|
||||
<field name="model">sale.order.line</field>
|
||||
<field name="code">failed=self.product_id.sale_line_warn == "warning"</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<odoo>
|
||||
<record id="excep_no_sol" model="exception.rule">
|
||||
<field name="name">No order lines</field>
|
||||
<field
|
||||
name="description"
|
||||
>At least one order line should be present in the sale</field>
|
||||
<field name="sequence">50</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="exception_type">by_domain</field>
|
||||
<field name="domain">[('order_line', '=', False)]</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
<record id="excep_no_free" model="exception.rule">
|
||||
<field name="name">No free order</field>
|
||||
<field name="description">The total can't be 0</field>
|
||||
<field name="sequence">50</field>
|
||||
<field name="model">sale.order</field>
|
||||
<field name="exception_type">by_domain</field>
|
||||
<field name="domain">[('amount_total', '=', 0)]</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
<record id="excep_no_dumping" model="exception.rule">
|
||||
<field name="name">No dumping</field>
|
||||
<field name="description">A product is sold cheaper than his cost.</field>
|
||||
<field name="sequence">50</field>
|
||||
<field name="model">sale.order.line</field>
|
||||
<field
|
||||
name="code"
|
||||
>failed = obj.product_id.standard_price != 0 and obj.product_id.standard_price > obj.price_unit</field>
|
||||
<field name="active" eval="False" />
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2018-06-29 05:00+0000\n"
|
||||
"Last-Translator: Osoul <baruni@osoul.ly>\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 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 3.0.1\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "عالقة كمسودّة"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "عالقة كمسودّة بسبب وجود خلل مبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
#, fuzzy
|
||||
msgid "Exception Rule"
|
||||
msgstr "قوانين خلل المبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "خلل المبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
#, fuzzy
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "قوانين خلل المبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
#, fuzzy
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "خلل المبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "لا يوجد رمز ZIP في عنوان التوصيل"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "لا يوجد كمية متوقّعة كافية"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "أمر مبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "قوانين خلل المبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
#, fuzzy
|
||||
msgid "Sales"
|
||||
msgstr "أمر مبيعات"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "تجربة الأوامر المسودّة"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Sale Exceptions"
|
||||
#~ msgstr "خلل المبيعات"
|
||||
|
||||
#~ msgid "Error:"
|
||||
#~ msgstr "خلل:"
|
||||
|
||||
#~ msgid "Exception"
|
||||
#~ msgstr "خلل مبيعات"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "عرض مبدئي"
|
||||
|
||||
#~ msgid "_Close"
|
||||
#~ msgstr "_إغلاق"
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно променено на"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale "
|
||||
"Order:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Proizvod je prodan ispod od nabavne cijene."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "Primjeni na"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "Najmanje jedna stavka treba postojati u ponudi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Blokirano u nacrtu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Blokirano u nacrtu zbog izuzetaka"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "Potvrdi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr "Kupac sale warning"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikaži naziv"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr "Pravila izuzetaka"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "Izuzeci"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Pravila izuzetaka"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Izuzeci u prodaji"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr "Is Exception Danger"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr "Glavni izuzetak"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "Nema PTT broja na odredištu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr "No dumping"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr "No free order"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "No order lines"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "Nije dovoljna virtualna zaliha"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr "Proizvod warning"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Prodaja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "Pravila izuzetaka u prodaji"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr "Prodaja exception confirm čarobnjak"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "Prodaja order line"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "Prodaja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Stavka prodajne narudžbe"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "Test Nacrt Nalogs"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr "The customer has a sale warning in his form"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr "The product has a warning in his form"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr "The total can't be 0"
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Darrera Actualització per"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Darrera Actualització el"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vist navn"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "Id"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2021-07-09 15:48+0000\n"
|
||||
"Last-Translator: Maria Sparenberg <maria.sparenberg@gmx.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.3.2\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
"<strong>Es gibt Fehler, die das Bestätigen dieses Verkaufsauftrags "
|
||||
"blockieren:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
"<strong>Es gibt Fehler in dieser Zeile, die das Bestätigen des Angebots "
|
||||
"blockieren:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Ein Produkt wird günstiger als dessen Anschaffungskosten verkauft."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
"Es sollte mindestens eine Position in diesem Verkaufsauftrag enthalten sein."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Im Entwurf blockiert"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Im Entwurf aufgrund von Fehlern blockiert."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "Abbrechen"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr "Bitte hier klicken, um den Auftrag trotz der Fehler zu bestätigen."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "Bestätigen"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr "Fehlerzusammenfassung"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Zu lösende Fehler"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Fehler ignorieren"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "Keine Auftragspositionen"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "Nicht genug virtueller Bestand"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Verkauf"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "Verkaufsauftrag"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "Auftragszeile"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "Verkäufe"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Verkaufsauftrag"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Auftragsposition"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Angebot"
|
||||
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
"<strong>Hay excepciones que bloquean la confirmación de esta orden de venta:"
|
||||
"</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
"<strong>Hay excepciones en esta línea que bloquean la confirmación de este "
|
||||
"presupuesto:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Un producto se vende más barato que su coste."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "Aplicar sobre"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "Al menos una línea de pedido debe estar presente en la venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Bloqueado en borrador"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Bloqueado en borrador debido a excepciones"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "Cancelar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
"Haga clic aquí para poder confirmar estos Pedidos de Venta a pesar de las "
|
||||
"excepciones."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr "Advertencia de venta del cliente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr "Regla de excepción"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "Excepciones"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr "Resumen de Excepciones"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Excepciones a resolver"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Ignorar Excepciones"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr "Es Peligro de Excepción"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr "Excepción principal"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "No hay Código Postal en el destino"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr "Evitar vender por debajo de coste"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr "Evitar pedidos gratuitos"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "No hay líneas de pedidos"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "No hay suficiente stock virtual"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr "Advertencia de producto"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "Reglas de Excepciones de Venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr "Asistente de confirmación de excepción de venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "Pedido de venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "Línea de pedido de venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "Ventas"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pedidos de venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Línea de pedidos de venta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "Comprobar excepciones en pedidos en presupuesto"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr "El cliente tiene un aviso de venta en su formulario"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr "El producto tiene una advertencia en su formulario"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr "El Total no puede ser 0"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nombre"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# Translators:
|
||||
# OCA Transbot <transbot@odoo-community.org>, 2018
|
||||
# JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-03-02 10:22+0000\n"
|
||||
"PO-Revision-Date: 2018-03-02 10:22+0000\n"
|
||||
"Last-Translator: JOSE ALEJANDRO ECHEVERRI VALENCIA <josealejandroeche@gmail."
|
||||
"com>, 2018\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Bloqueado en borrador"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Bloqueado en borrador debido a excepciones"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 11:37+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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre desplegado"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificacion realizada"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizacion por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización realizada"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loodud"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "تاریخ آخرین بهروزرسانی"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین به روز رسانی توسط"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,278 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-23 03:41+0000\n"
|
||||
"PO-Revision-Date: 2024-12-31 15:06+0000\n"
|
||||
"Last-Translator: samibc2c <sami.bouzidi@camptocamp.com>\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 5.6.2\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
"<strong>Il y a des exceptions qui bloquent la confirmation de cette Vente:</"
|
||||
"strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
"<strong>Cette ligne comporte des restrictions qui bloquent la confirmation "
|
||||
"du devis:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Un article est vendu moins cher que son coût."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "S'applique à"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "La commande doit comporter au moins une ligne"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Bloqué à l'état brouillon"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Bloqué à l'état brouillon à cause d'une restriction"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "Annuler"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
"Cliquer ici pour confirmer cette commande indépendamment des restrictions."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "Confirmer"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr "Avertissement vente client"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr "Règles de restriction"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "Restrictions"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr "Resumé des restrictions"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Exception à corriger"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Ignorer les restrictions"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr "Exception principale"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "No ZIP code on destination"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr "Pas de vente à perte"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr "Pas de commande gratuite"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "Pas de lignes de commande"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "Stock virtuel insuffisant"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr "Avertissement article"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Ventes"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "Règle de restriction sur les ventes"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr "Assistant de confirmation de restriction"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "Commande de vente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "Ligne de commande de vente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "Ventes"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Commandes de vente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Ligne de commandes de vente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "Tester les commandes brouillon"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr "Le client présente un avertissement de vente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr "L'article présente un avertissement"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr "Le total ne peut être nul"
|
||||
|
||||
#~ msgid "Sale Exceptions"
|
||||
#~ msgstr "Restrictions de vente"
|
||||
|
||||
#~ msgid "sale.exception.confirm"
|
||||
#~ msgstr "sale.exception.confirm"
|
||||
|
||||
#~ msgid "Error:"
|
||||
#~ msgstr "Erreur :"
|
||||
|
||||
#~ msgid "Exception"
|
||||
#~ msgstr "Restriction"
|
||||
|
||||
#~ msgid "Rule Group"
|
||||
#~ msgstr "Règle de groupe"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Devis"
|
||||
|
||||
#~ msgid "_Close"
|
||||
#~ msgstr "_Close"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Afficher le nom"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifié par"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifié le"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado por última vez o"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ültima actualización por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עודכן לאחרונה על"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-02-15 19:23+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>\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 4.14.1\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
"<strong>Postoje izuzetci koji blokiraju potvrđivanje ove ponude:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Proizvod je prodan ispod od nabavne cijene."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "Primjeni na"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "Najmanje jedna stavka treba postojati u ponudi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Blokirano u nacrtu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Blokirano u nacrtu zbog izuzetaka"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "Otkaži"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
#, fuzzy
|
||||
msgid "Exception Rule"
|
||||
msgstr "Pravila izuzetaka"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "Izuzeci"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
#, fuzzy
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Pravila izuzetaka"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
#, fuzzy
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Izuzeci u prodaji"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "Nema PTT broja na odredištu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "Nije dovoljna virtualna zaliha"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Prodaja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "Pravila izuzetaka u prodaji"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
#, fuzzy
|
||||
msgid "Sales"
|
||||
msgstr "Prodaja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Sale Exceptions"
|
||||
#~ msgstr "Izuzeci u prodaji"
|
||||
|
||||
#~ msgid "sale.exception.confirm"
|
||||
#~ msgstr "sale.exception.confirm"
|
||||
|
||||
#~ msgid "Error:"
|
||||
#~ msgstr "Greška:"
|
||||
|
||||
#~ msgid "Exception"
|
||||
#~ msgstr "Izuzetak"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
||||
#~ msgid "_Close"
|
||||
#~ msgstr "_Zatvori"
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 11:37+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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje modificirano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Név megjelenítése"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utolsó frissítés dátuma"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítve, által"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Utoljára frissítve "
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Dimodifikasi pada"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Diperbaharui oleh"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Diperbaharui pada"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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: 2025-03-03 18:06+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.10.2\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
"<strong>C'è un'eccezione che blocca la conferma di questo ordine di "
|
||||
"vendita:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
"<strong>C'è un'eccezione in questa riga che blocca la conferma di questo "
|
||||
"preventivo:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Un prodotto è venduto ad un prezzo inferiore al costo."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "Applica a"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "Almeno una riga ordine deve essere presente nella vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Bloccati in bozza"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "Bloccati in bozza per eccezioni"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "Annulla"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
"Fare clic qui per poter confermare questo ordine di vendita "
|
||||
"indipendentemente dalle eccezioni."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "Conferma"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr "Avviso vendita cliente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr "Regola eccezione"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "Eccezioni"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr "Riepilogo eccezioni"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Eccezioni da risolvere"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Ignora eccezioni"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr "L'eccezione è pericolosa"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr "Eccezione principale"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "Nessun CAP sull'indirizzo di destinazione"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr "Non ribassare"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr "Nessun ordine gratuito"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "Nessuna riga ordine"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "Giacenza virtuale non sufficiente"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr "Avviso prodotto"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "Regole eccezione vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr "Procedura guidata conferma eccezione vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "Ordine di vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "Riga ordine di vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "Vendite"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Ordine di vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Riga ordine di vendita"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "Test ordini bozza"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr "Il cliente ha un avviso di vendita nel suo modulo"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr "Il prodotto ha un avviso nel suo modulo"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr "Il totale non può essere zero"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시 이름"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visnings navn"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist oppdatert "
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Laget av"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Laget den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Te tonen naam"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatste bijgewerkt door"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst Aangepast op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 11:37+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\n"
|
||||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/"
|
||||
"teams/23907/nl_NL/)\n"
|
||||
"Language: nl_NL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
#, fuzzy
|
||||
msgid "Exception Rule"
|
||||
msgstr "Uitzonderingsregels"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
#, fuzzy
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Uitzonderingsregels"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
#, fuzzy
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "Uitzondering"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst aangepast door"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst aangepast op"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "Geen postcode op bestemming"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Error:"
|
||||
#~ msgstr "Fout:"
|
||||
|
||||
#~ msgid "Exception"
|
||||
#~ msgstr "Uitzondering"
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
|
||||
"%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
|
||||
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzone przez"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Utworzono"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Wyświetlana nazwa "
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ostatnio modyfikowano"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio modyfikowane przez"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ostatnia zmiana"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 11:37+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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação Em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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 (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"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Mostrar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "Identificação"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Apresentar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat la"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume Afişat"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima actualizare în"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare la"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последний раз обновлено"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale "
|
||||
"Order:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobraziť meno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,255 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ime za prikaz"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnja izmjena"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visa namn"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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: 2025-05-26 08:26+0000\n"
|
||||
"Last-Translator: Ahmet Yiğit Budak <yigit@altinkaya.com>\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"
|
||||
"X-Generator: Weblate 5.10.4\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
"<strong>Aşağıdaki istisnalar satış siparişinin onaylanmasına izin "
|
||||
"vermiyor:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
"<strong>Aşağıdaki satırda bulunan istisnalar sebebiyle bu teklif "
|
||||
"onaylanamıyor:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "Bir ürün maliyetinden daha ucuza satıldı."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "Uygulanır"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "Siparişte en az bir adet sipariş satırı bulunmalıdır"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "Taslakta Engellendi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "İstisnalar sebebiyle taslakta engellendi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "İptal"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
"İstisnalara bakılmaksızın bu Satış Siparişlerini onaylayabilmek için buraya "
|
||||
"tıklayın."
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "Onayla"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturuldu"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr "Müşteri sipariş uyarısı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen İsim"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr "İstisna Kuralı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr "İstisnalar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr "İstisnaların Özeti"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "Çözülecek istisnalar"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "İstisnaları Yoksay"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr "İstisna Uyarı Mı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son değişiklik"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son güncelleyen"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son güncellenme"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr "Ana İstisna"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "Teslim adresinde posta kodu eksik"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr "Maliyetten Ucuza Satılamaz"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr "Bedelsiz satışı engelle"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "Satırsız satışı engelle"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "Yeterli Sanal Stok Yok"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr "Ürün uyarısı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "Satış"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "Satış İstisna Kuralları"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr "Satış istisna onaylama sihirbazı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "Satış siparişi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "Satış sipariş satırı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "Siparişler"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Satış Siparişi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "Satış Siparişi Satırı"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "Taslak Siparişleri Test Et"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr "Müşteri için sipariş uyarısı ayarlanmış"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr "Ürün için sipariş uyarısı ayarlanmış"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr "Toplam miktar 0 olamaz"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-01-16 11:37+0000\n"
|
||||
"PO-Revision-Date: 2018-01-16 11:37+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=1; plural=0;\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma tarihi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünen ad"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "Kimlik"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "En son güncelleyen "
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "En son güncelleme tarihi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата створення"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,254 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tạo bởi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tạo vào"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,270 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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: 2019-10-16 18:32+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.8\n"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr "<strong>有一些例外情况会阻止此销售订单的确认:</strong>"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr "产品的销售价格低于他的成本。"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr "应用于"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr "销售中应至少有一个订单行"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr "在草稿中阻止"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr "由于异常在草稿中被阻止"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr "点击此处以确认此销售订单,无论是否有例外。"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr "确认"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建者"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr "异常规则"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr "解决的异常情况"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr "忽略异常"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新者"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr "没有目的地邮政编码"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr "不能销售"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr "没有免费的订单"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr "没有订单行"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr "没有足够的虚拟库存"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr "销售"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr "销售异常规则"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr "销售订单"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr "销售订单行"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr "销售"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr "销售订单行"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr "测试草稿订单"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr "总数不能为0"
|
||||
|
||||
#~ msgid "Sale Exceptions"
|
||||
#~ msgstr "销售异常"
|
||||
|
||||
#~ msgid "Sale Order"
|
||||
#~ msgstr "销售订单"
|
||||
|
||||
#~ msgid "sale.exception.confirm"
|
||||
#~ msgstr "sale.exception.confirm"
|
||||
|
||||
#~ msgid "Error:"
|
||||
#~ msgstr "错误:"
|
||||
|
||||
#~ msgid "Exception"
|
||||
#~ msgstr "异常"
|
||||
|
||||
#~ msgid "Quotation"
|
||||
#~ msgstr "Quotation"
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_exception
|
||||
#
|
||||
# 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-05-13 01:19+0000\n"
|
||||
"PO-Revision-Date: 2017-05-13 01:19+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions blocking the confirmation of this Sale Order:</"
|
||||
"strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"<strong>There are exceptions on this line blocking the confirmation of this "
|
||||
"quotation:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_dumping
|
||||
msgid "A product is sold cheaper than his cost."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__model
|
||||
msgid "Apply on"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_sol
|
||||
msgid "At least one order line should be present in the sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sales_order_filter
|
||||
msgid "Blocked in draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_exception_confirm
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Blocked in draft due to exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid ""
|
||||
"Click here to be able to confirm this Sale Orders regardless of the "
|
||||
"exceptions."
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_sale_exception_confirm
|
||||
msgid "Confirm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "建立者"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_partner_sale_warning
|
||||
msgid "Customer sale warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_exception_rule
|
||||
msgid "Exception Rule"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exception_ids
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exception_ids
|
||||
msgid "Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__exceptions_summary
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__exceptions_summary
|
||||
msgid "Exceptions Summary"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__exception_ids
|
||||
msgid "Exceptions to resolve"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__id
|
||||
msgid "ID"
|
||||
msgstr "編號"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__ignore
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__ignore_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__ignore_exception
|
||||
#: model_terms:ir.ui.view,arch_db:sale_exception.view_order_form
|
||||
msgid "Ignore Exceptions"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order_line__is_exception_danger
|
||||
msgid "Is Exception Danger"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改:"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新:"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_order__main_exception_id
|
||||
msgid "Main Exception"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_zip
|
||||
#: model:exception.rule,name:sale_exception.excep_no_zip
|
||||
msgid "No ZIP code on destination"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_dumping
|
||||
msgid "No dumping"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_free
|
||||
msgid "No free order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.excep_no_sol
|
||||
msgid "No order lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_stock
|
||||
#: model:exception.rule,name:sale_exception.excep_no_stock
|
||||
msgid "Not Enough Virtual Stock"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,name:sale_exception.exception_product_sale_warning
|
||||
msgid "Product warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_sale_exception_confirm__related_model_id
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.act_window,name:sale_exception.action_sale_test_tree
|
||||
#: model:ir.ui.menu,name:sale_exception.menu_sale_test
|
||||
msgid "Sale Exception Rules"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_exception_confirm
|
||||
msgid "Sale exception confirm wizard"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order
|
||||
msgid "Sale order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields.selection,name:sale_exception.selection__exception_rule__model__sale_order_line
|
||||
msgid "Sale order line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model.fields,field_description:sale_exception.field_exception_rule__sale_ids
|
||||
msgid "Sales"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.model,name:sale_exception.model_sale_order_line
|
||||
msgid "Sales Order Line"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:ir.actions.server,name:sale_exception.ir_cron_test_orders_ir_actions_server
|
||||
#: model:ir.cron,cron_name:sale_exception.ir_cron_test_orders
|
||||
msgid "Test Draft Orders"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_partner_sale_warning
|
||||
msgid "The customer has a sale warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.exception_product_sale_warning
|
||||
msgid "The product has a warning in his form"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_exception
|
||||
#: model:exception.rule,description:sale_exception.excep_no_free
|
||||
msgid "The total can't be 0"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
|
||||
from . import exception_rule
|
||||
from . import sale_order
|
||||
from . import sale_order_line
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# Copyright 2011 Akretion, Sodexis
|
||||
# Copyright 2018 Akretion
|
||||
# Copyright 2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class ExceptionRule(models.Model):
|
||||
_inherit = "exception.rule"
|
||||
|
||||
model = fields.Selection(
|
||||
selection_add=[
|
||||
("sale.order", "Sale order"),
|
||||
("sale.order.line", "Sale order line"),
|
||||
],
|
||||
ondelete={
|
||||
"sale.order": "cascade",
|
||||
"sale.order.line": "cascade",
|
||||
},
|
||||
)
|
||||
sale_ids = fields.Many2many("sale.order", string="Sales")
|
||||
|
|
@ -0,0 +1,71 @@
|
|||
# Copyright 2011 Akretion, Sodexis
|
||||
# Copyright 2018 Akretion
|
||||
# Copyright 2019 Camptocamp SA
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
from odoo import api, models
|
||||
|
||||
|
||||
class SaleOrder(models.Model):
|
||||
_inherit = ["sale.order", "base.exception"]
|
||||
_name = "sale.order"
|
||||
|
||||
@api.model
|
||||
def _reverse_field(self):
|
||||
return "sale_ids"
|
||||
|
||||
def detect_exceptions(self):
|
||||
all_exceptions = super().detect_exceptions()
|
||||
lines = self.mapped("order_line")
|
||||
all_exceptions += lines.detect_exceptions()
|
||||
return all_exceptions
|
||||
|
||||
@api.model
|
||||
def test_all_draft_orders(self):
|
||||
order_set = self.search([("state", "=", "draft")])
|
||||
order_set.detect_exceptions()
|
||||
return True
|
||||
|
||||
def _fields_trigger_check_exception(self):
|
||||
return ["ignore_exception", "order_line", "state"]
|
||||
|
||||
def _check_sale_check_exception(self, vals):
|
||||
check_exceptions = any(
|
||||
field in vals for field in self._fields_trigger_check_exception()
|
||||
)
|
||||
if check_exceptions:
|
||||
self.sale_check_exception()
|
||||
|
||||
def write(self, vals):
|
||||
result = super().write(vals)
|
||||
self._check_sale_check_exception(vals)
|
||||
return result
|
||||
|
||||
def sale_check_exception(self):
|
||||
orders = self.filtered(lambda s: s.state == "sale")
|
||||
if orders:
|
||||
orders._check_exception()
|
||||
|
||||
def action_confirm(self):
|
||||
if self.detect_exceptions():
|
||||
return self._popup_exceptions()
|
||||
return super().action_confirm()
|
||||
|
||||
def action_draft(self):
|
||||
res = super().action_draft()
|
||||
orders = self.filtered("ignore_exception")
|
||||
orders.write({"ignore_exception": False})
|
||||
return res
|
||||
|
||||
def _sale_get_lines(self):
|
||||
self.ensure_one()
|
||||
return self.order_line
|
||||
|
||||
@api.model
|
||||
def _get_popup_action(self):
|
||||
return self.env.ref("sale_exception.action_sale_exception_confirm")
|
||||
|
||||
def action_unlock(self):
|
||||
return super(
|
||||
SaleOrder, self.with_context(check_exception=False)
|
||||
).action_unlock()
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
# © 2019 Akretion
|
||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
||||
|
||||
import html
|
||||
|
||||
from odoo import api, fields, models
|
||||
|
||||
|
||||
class SaleOrderLine(models.Model):
|
||||
_inherit = ["sale.order.line", "base.exception.method"]
|
||||
_name = "sale.order.line"
|
||||
|
||||
exception_ids = fields.Many2many(
|
||||
"exception.rule", string="Exceptions", copy=False, readonly=True
|
||||
)
|
||||
exceptions_summary = fields.Html(
|
||||
readonly=True, compute="_compute_exceptions_summary"
|
||||
)
|
||||
ignore_exception = fields.Boolean(
|
||||
related="order_id.ignore_exception", store=True, string="Ignore Exceptions"
|
||||
)
|
||||
is_exception_danger = fields.Boolean(compute="_compute_is_exception_danger")
|
||||
|
||||
@api.depends("exception_ids", "ignore_exception")
|
||||
def _compute_is_exception_danger(self):
|
||||
for rec in self:
|
||||
rec.is_exception_danger = (
|
||||
len(rec.exception_ids) > 0 and not rec.ignore_exception
|
||||
)
|
||||
|
||||
@api.depends("exception_ids", "ignore_exception")
|
||||
def _compute_exceptions_summary(self):
|
||||
for rec in self:
|
||||
if rec.exception_ids and not rec.ignore_exception:
|
||||
rec.exceptions_summary = rec._get_exception_summary()
|
||||
else:
|
||||
rec.exceptions_summary = False
|
||||
|
||||
def _get_exception_summary(self):
|
||||
return "<ul>%s</ul>" % "".join(
|
||||
[
|
||||
"<li>%s: <i>%s</i></li>"
|
||||
% tuple(map(html.escape, (e.name, e.description)))
|
||||
for e in self.exception_ids
|
||||
]
|
||||
)
|
||||
|
||||
def _get_main_records(self):
|
||||
return self.mapped("order_id")
|
||||
|
||||
@api.model
|
||||
def _reverse_field(self):
|
||||
return "sale_ids"
|
||||
|
||||
def _detect_exceptions(self, rule):
|
||||
records = super()._detect_exceptions(rule)
|
||||
# Thanks to the new flush of odoo 13.0, queries will be optimized
|
||||
# together at the end even if we update the exception_ids many times.
|
||||
# On previous versions, this could be unoptimized.
|
||||
(self - records).exception_ids = [(3, rule.id)]
|
||||
records.exception_ids = [(4, rule.id)]
|
||||
return records.mapped("order_id")
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
If you are going to use Customer sale warning and Product warning,
|
||||
for setting corresponding information, you need to:
|
||||
|
||||
#. Go to *Settings > User & Companies > Users*.
|
||||
#. Edit your user.
|
||||
#. Check "A warning can be set on a product or a customer (Sale)" group.
|
||||
#. Install sale_management addon.
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
* Raphaël Valyi <raphael.valyi@akretion.com>
|
||||
* Renato Lima <renato.lima@akretion.com>
|
||||
* Sébastien BEAU <sebastien.beau@akretion.com>
|
||||
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
|
||||
* Yannick Vaucher <yannick.vaucher@camptocamp.com>
|
||||
* Simone Orsi <simahawk@gmail.com>
|
||||
* SodexisTeam <dev@sodexis.com>
|
||||
* Mourad EL HADJ MIMOUNE <mourad.elhadj.mimoune@akretion.com>
|
||||
* Raphaël Reverdy <raphael.reverdy@akretion.com>
|
||||
* Florian da Costa <florian.dacosta@akretion.com>
|
||||
* Iván Todorovich <ivan.todorovich@druidoo.io>
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
This module allows you attach several customizable exceptions to your
|
||||
sale order in a way that you can filter orders by exceptions type and fix them.
|
||||
|
||||
This is especially useful in an scenario for mass sales order import because
|
||||
it's likely some orders have errors when you import them (like product not
|
||||
found in Odoo, wrong line format etc.)
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
Not Enough Virtual Stock:
|
||||
#. Go to *Sales > Products > Products*.
|
||||
#. Create new storable product without stock available.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Add product without stock available.
|
||||
#. An exception will be displayed.
|
||||
|
||||
No ZIP code on destination:
|
||||
#. Go to *Contacts*.
|
||||
#. Edit or create new contact.
|
||||
#. Set empty zip code.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Set delivery address with no zip code.
|
||||
#. An exception will be displayed.
|
||||
|
||||
Product warning:
|
||||
#. Go to *Sales > Products > Products*.
|
||||
#. Edit or create new product.
|
||||
#. Go to *Sales* tab.
|
||||
#. Set your desired warning option under the *Warning when Selling this Product* group.
|
||||
#. Set some warning message.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Add product with warning message.
|
||||
#. An exception will be displayed.
|
||||
|
||||
Partner warning:
|
||||
#. Go to *Contacts*.
|
||||
#. Edit or create new contact.
|
||||
#. Go to *Internal notes* tab.
|
||||
#. Set warning option according to *Warning on the Sales Order* group.
|
||||
#. Set some warning message.
|
||||
#. Go to *Sales > Orders > Quotations*
|
||||
#. Create new quotation.
|
||||
#. Set partner with warning message.
|
||||
#. An exception will be displayed.
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_sale_exception_confirm,sale.exception.confirm,model_sale_exception_confirm,sales_team.group_sale_salesman,1,1,1,1
|
||||
|
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