Fall 4605: Lieferbedingung beim Kunden, Modul sale_partner_incoterm hinzugefügt und nach Odoo11 portiert.
parent
4fa979e9e6
commit
2b1b9c8d6f
|
|
@ -0,0 +1,58 @@
|
|||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
|
||||
==================================
|
||||
Default sales incoterm per partner
|
||||
==================================
|
||||
|
||||
This module adds a field on the Sales & Purchases tab of the partner form where
|
||||
you can register the default incoterms for new sales orders for this customer.
|
||||
|
||||
The field is only visible for customers (company partners and contacts). A
|
||||
different incoterm can be set per contact within the same company.
|
||||
|
||||
When the partner is selected on a new quotation, the incoterm is retrieved from
|
||||
the partner record.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/167/8.0
|
||||
|
||||
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 smashing it by providing a detailed and welcomed feedback `here <https://github.com/OCA/
|
||||
sale-workflow/issues/new?body=module:%20
|
||||
sale_partner_incoterm%0Aversion:%20
|
||||
8.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Stefan Rijnhart <stefan@opener.am>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: https://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: https://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
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.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import models
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (C) 2015 Opener B.V. (<https://opener.am>)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
|
||||
{
|
||||
'name': 'Default sales incoterm per partner',
|
||||
'summary': "Set the customer preferred incoterm on each sales order",
|
||||
'version': '11.0.1.0.0',
|
||||
'category': 'Sales Management',
|
||||
'license': 'AGPL-3',
|
||||
'author': "Opener B.V.,Odoo Community Association (OCA)",
|
||||
'website': 'https://github.com/oca/sale-workflow',
|
||||
'depends': ['sale_stock'],
|
||||
'data': [
|
||||
'views/res_partner.xml',
|
||||
],
|
||||
'auto_install': False,
|
||||
'installable': True,
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/am/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "ተባባሪ"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "الشريك"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-10-04 13:41+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Партньор"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bs\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-14 06:38+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Comandes de venda"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Společník"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:35+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 11.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-01-25 14:19+0000\n"
|
||||
"PO-Revision-Date: 2018-01-25 14:19+0000\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_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model.fields,field_description:sale_partner_incoterm.field_res_partner_sale_incoterm_id
|
||||
#: model:ir.model.fields,field_description:sale_partner_incoterm.field_res_users_sale_incoterm_id
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr "Lieferbedingungen Verkäufe"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Quotation"
|
||||
msgstr "Angebot"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model.fields,help:sale_partner_incoterm.field_res_partner_sale_incoterm_id
|
||||
#: model:ir.model.fields,help:sale_partner_incoterm.field_res_users_sale_incoterm_id
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr "Die Standard-Lieferbedingungen für neue Kundenaufträge für diesen Kunden."
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:35+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Συνεργάτης"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-23 08:14+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pedido de venta"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/es_CR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/es_EC/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-10-04 13:41+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/es_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_ES\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pedido de venta"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-09 20:40+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/es_MX/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_MX\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Compañero"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/es_VE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:35+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Kumppani"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Myyntitilaus"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-23 08:14+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partenaire"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Bon de commande"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-29 16:44+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/fr_CH/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CH\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partenaire"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:35+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_HR\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Vevői megrendelés"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-11-18 08:29+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Mitra"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-03-12 01:52+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Ordini vendita"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "パートナ"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partneris"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partneris"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Партнер"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Харилцагч"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/nb/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/nb_NO/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb_NO\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 13:53+0000\n"
|
||||
"PO-Revision-Date: 2015-10-15 13:53+0000\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr "Leveringscondities verkoop"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Relatie"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Verkooporder"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr "De standaard leveringscondities op nieuwe verkooporders voor deze klant."
|
||||
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/nl_BE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_BE\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Relatie"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-08-29 03:51+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Dutch (Netherlands) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/nl_NL/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl_NL\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Verkooporder"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-11-22 23:35+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Parceiro"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-10 05:55+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Parceiro"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Pedido de Venda"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Parceiro"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-06-22 12:41+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partener"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Comandă vânzare"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Контрагент"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-15 13:53+0000\n"
|
||||
"PO-Revision-Date: 2015-10-15 13:53+0000\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-09-26 08:15+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Objednávka predaja"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,39 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-23 08:14+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 12:20+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr "Privzeti prodajni Incoterm"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Prodajni nalog"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr "Privzeti Incoterm za nove prodajne naloge tega kupca."
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/sr@latin/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Partner"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Företag"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Thai (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "พาร์ทเนอร์"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-05 23:35+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "İş ortağı"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Sipariş Emri"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2017-01-04 10:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Turkish (Turkey) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/tr_TR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr_TR\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Ortak"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "Satış emri"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "Đối tác"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "业务伙伴"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr "销售订单"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * sale_partner_incoterm
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: sale-workflow (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-12-24 04:48+0000\n"
|
||||
"PO-Revision-Date: 2015-10-23 08:15+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-sale-workflow-8-0/language/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: field:res.partner,sale_incoterm_id:0
|
||||
msgid "Default Sales Incoterm"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_res_partner
|
||||
msgid "Partner"
|
||||
msgstr "夥伴"
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: model:ir.model,name:sale_partner_incoterm.model_sale_order
|
||||
msgid "Sales Order"
|
||||
msgstr ""
|
||||
|
||||
#. module: sale_partner_incoterm
|
||||
#: help:res.partner,sale_incoterm_id:0
|
||||
msgid "The default incoterm for new sales orders for this customer."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
from . import res_partner
|
||||
from . import sale_order
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (C) 2015 Opener B.V. (<https://opener.am>)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
class Partner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
sale_incoterm_id = fields.Many2one(string='Default Sales Incoterm',
|
||||
comodel_name='stock.incoterms',
|
||||
help="The default incoterm for new sales orders for this customer.")
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (C) 2015 Opener B.V. (<https://opener.am>)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from odoo import models, api
|
||||
|
||||
|
||||
class SaleOrder(models.Model):
|
||||
_inherit = 'sale.order'
|
||||
|
||||
@api.multi
|
||||
@api.onchange('partner_id')
|
||||
def onchange_partner_id(self):
|
||||
res = super(SaleOrder, self).onchange_partner_id()
|
||||
if self.partner_id:
|
||||
res['value']['incoterm'] = self.env['res.partner'].browse(self.partner_id).sale_incoterm_id.id
|
||||
return res
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import test_sale_partner_incoterm
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
##############################################################################
|
||||
#
|
||||
# Copyright (C) 2015 Opener B.V. (<https://opener.am>)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
##############################################################################
|
||||
from openerp.tests.common import TransactionCase
|
||||
|
||||
|
||||
class TestSalePartnerIncoterm(TransactionCase):
|
||||
def test_sale_partner_incoterm(self):
|
||||
""" Check that the customer's default incoterm is retrieved in the \
|
||||
sales order's onchange """
|
||||
customer = self.env['res.partner'].search(
|
||||
[('customer', '=', True)], limit=1)
|
||||
incoterm = self.env['stock.incoterms'].search([], limit=1)
|
||||
customer.write({'sale_incoterm_id': incoterm.id})
|
||||
res = self.env['sale.order'].onchange_partner_id(customer.id)['value']
|
||||
self.assertEqual(res['incoterm'], incoterm.id)
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_partner_property_form" model="ir.ui.view">
|
||||
<field name="name">Add default sales incoterm to partner form</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="base.view_partner_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="user_id" position="after">
|
||||
<field name="sale_incoterm_id"
|
||||
attrs="{'invisible': [('customer', '!=', True)]}" />
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
||||
Loading…
Reference in New Issue