Browse Source
[MIG][11.0] Migration of partner_affiliate to v11 (#579)
[MIG][11.0] Migration of partner_affiliate to v11 (#579)
* [MIG] Migration of partner_affiliate to v11 * Fixing use of @class and do not inheriting address from parent company * Improving legibility and details of fields * Fixing travis errorspull/647/head
Raúl Martín
7 years ago
committed by
tarteo
61 changed files with 2682 additions and 0 deletions
-
60partner_affiliate/README.rst
-
6partner_affiliate/__init__.py
-
23partner_affiliate/__manifest__.py
-
46partner_affiliate/i18n/am.po
-
46partner_affiliate/i18n/ar.po
-
46partner_affiliate/i18n/bg.po
-
46partner_affiliate/i18n/bs.po
-
46partner_affiliate/i18n/ca.po
-
46partner_affiliate/i18n/cs.po
-
46partner_affiliate/i18n/cs_CZ.po
-
46partner_affiliate/i18n/da.po
-
46partner_affiliate/i18n/de.po
-
46partner_affiliate/i18n/el_GR.po
-
46partner_affiliate/i18n/en_GB.po
-
46partner_affiliate/i18n/es.po
-
46partner_affiliate/i18n/es_CR.po
-
46partner_affiliate/i18n/es_EC.po
-
46partner_affiliate/i18n/es_MX.po
-
46partner_affiliate/i18n/es_VE.po
-
46partner_affiliate/i18n/et.po
-
46partner_affiliate/i18n/eu.po
-
46partner_affiliate/i18n/fi.po
-
46partner_affiliate/i18n/fr.po
-
46partner_affiliate/i18n/fr_CA.po
-
46partner_affiliate/i18n/fr_CH.po
-
46partner_affiliate/i18n/gl.po
-
47partner_affiliate/i18n/hr.po
-
46partner_affiliate/i18n/hr_HR.po
-
46partner_affiliate/i18n/hu.po
-
46partner_affiliate/i18n/it.po
-
46partner_affiliate/i18n/ja.po
-
46partner_affiliate/i18n/lt.po
-
46partner_affiliate/i18n/lv.po
-
46partner_affiliate/i18n/mk.po
-
46partner_affiliate/i18n/mn.po
-
46partner_affiliate/i18n/nb.po
-
46partner_affiliate/i18n/nb_NO.po
-
46partner_affiliate/i18n/nl.po
-
46partner_affiliate/i18n/nl_BE.po
-
46partner_affiliate/i18n/nl_NL.po
-
46partner_affiliate/i18n/pl.po
-
46partner_affiliate/i18n/pt.po
-
46partner_affiliate/i18n/pt_BR.po
-
46partner_affiliate/i18n/pt_PT.po
-
48partner_affiliate/i18n/res_partner_affiliate.pot
-
46partner_affiliate/i18n/ro.po
-
46partner_affiliate/i18n/ru.po
-
46partner_affiliate/i18n/sk.po
-
46partner_affiliate/i18n/sl.po
-
46partner_affiliate/i18n/sr@latin.po
-
46partner_affiliate/i18n/sv.po
-
46partner_affiliate/i18n/th.po
-
46partner_affiliate/i18n/tr.po
-
46partner_affiliate/i18n/tr_TR.po
-
46partner_affiliate/i18n/vi.po
-
46partner_affiliate/i18n/zh_CN.po
-
46partner_affiliate/i18n/zh_TW.po
-
5partner_affiliate/models/__init__.py
-
23partner_affiliate/models/res_partner.py
-
BINpartner_affiliate/static/description/icon.png
-
78partner_affiliate/views/res_partner_view.xml
@ -0,0 +1,60 @@ |
|||
.. 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 |
|||
|
|||
================== |
|||
Partner Affiliates |
|||
================== |
|||
|
|||
This module allows to use parent_id in company partner to refer to a parent |
|||
company, plus will show a tab in parent company of affiliated companies. |
|||
|
|||
Usage |
|||
===== |
|||
|
|||
New tab 'Affiliates' are available on the contact form if partner is company. |
|||
In tab 'Contact & Addresses' only are shown those contacts that are not |
|||
companies. |
|||
|
|||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
|||
:alt: Try me on Runbot |
|||
:target: https://runbot.odoo-community.org/runbot/134/11.0 |
|||
|
|||
Bug Tracker |
|||
=========== |
|||
|
|||
Bugs are tracked on `GitHub Issues |
|||
<https://github.com/OCA/partner-contact/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. |
|||
|
|||
Credits |
|||
======= |
|||
|
|||
Images |
|||
------ |
|||
|
|||
* Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_. |
|||
|
|||
Contributors |
|||
------------ |
|||
|
|||
* Yannick Vaucher <yannick.vaucher@camptocamp.com> |
|||
* Vicent Cubells <vicent.cubells@tecnativa.com> |
|||
* Raul Martin <raul.martin@braintec-group.com> |
|||
* Dave Lasley <dave@laslabs.com> |
|||
|
|||
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 https://odoo-community.org. |
@ -0,0 +1,6 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# Copyright 2018 brain-tec AG - Raul Martin |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import models |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# Copyright 2017 Tecnativa - Vicent Cubells |
|||
# Copyright 2018 brain-tec AG - Raul Martin |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
{ |
|||
'name': 'Partner Affiliates', |
|||
'version': '11.0.1.0.0', |
|||
'author': "Camptocamp, " |
|||
"Tecnativa, " |
|||
"brain-tec AG, " |
|||
"Odoo Community Association (OCA)", |
|||
'website': 'http://www.camptocamp.com', |
|||
'category': 'CRM', |
|||
'license': 'AGPL-3', |
|||
'installable': True, |
|||
'depends': [ |
|||
'base', |
|||
], |
|||
'data': [ |
|||
'views/res_partner_view.xml', |
|||
], |
|||
} |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "ተባባሪ" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "الشريك" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Партньор" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Společník" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# Translators: |
|||
# Lukáš Spurný <lukasspurny8@gmail.com>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-02-21 03:58+0000\n" |
|||
"PO-Revision-Date: 2018-02-21 03:58+0000\n" |
|||
"Last-Translator: Lukáš Spurný <lukasspurny8@gmail.com>, 2018\n" |
|||
"Language-Team: Czech (Czech Republic) (https://www.transifex.com/oca/teams/23907/cs_CZ/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: cs_CZ\n" |
|||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobil" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Společník" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: de\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobil:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Συνεργάτης" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Teléfono móvil:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Teléfono:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: eu\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Kidea" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Kumppani" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: French (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax :" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Portable :" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Contact" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Téléphone:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: fr_CA\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,47 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Bole <bole@dajmi5.com>, 2018 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2018-02-21 03:58+0000\n" |
|||
"PO-Revision-Date: 2018-02-21 03:58+0000\n" |
|||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n" |
|||
"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mob:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Tel:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobitel:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Cellulare:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefono:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "パートナ" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partneris" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partneris" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Партнер" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Харилцагч" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: nl\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobiel:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Relatie" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefoon:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Relatie" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# Translators: |
|||
# Peter Hageman <hageman.p@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-11-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n" |
|||
"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Relatie" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/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=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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# Translators: |
|||
# Tiago Baptista <tiago@baptista.net>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 10.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-11-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: Tiago Baptista <tiago@baptista.net>, 2017\n" |
|||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,48 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 8.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-08-02 06:24+0000\n" |
|||
"PO-Revision-Date: 2015-08-02 06:24+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: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
#: field:res.partner,affiliate_ids:0 |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Contacts" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
|||
|
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partener" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Контрагент" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Faks:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobilni telefon:" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr%40latin/)\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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Företag" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "พาร์ทเนอร์" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "İş Ortağı" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Ortak" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Đối tác" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "业务伙伴" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,46 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * partner_affiliate |
|||
# |
|||
# 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-21 01:48+0000\n" |
|||
"PO-Revision-Date: 2017-11-21 01:48+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" |
|||
"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: partner_affiliate |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.model.fields,field_description:partner_affiliate.field_res_users_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.model,name:partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "夥伴" |
|||
|
|||
#. module: partner_affiliate |
|||
#: model:ir.ui.view,arch_db:partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import res_partner |
@ -0,0 +1,23 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# Copyright 2018 brain-tec AG - Raul Martin |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from odoo import fields, models |
|||
|
|||
|
|||
class ResPartner(models.Model): |
|||
"""Add relation affiliate_ids.""" |
|||
_inherit = "res.partner" |
|||
|
|||
# force "active_test" domain to bypass _search() override |
|||
child_ids = fields.One2many('res.partner', 'parent_id', |
|||
string='Contacts', |
|||
domain=[('active', '=', True), |
|||
('is_company', '=', False)]) |
|||
|
|||
# force "active_test" domain to bypass _search() override |
|||
affiliate_ids = fields.One2many('res.partner', 'parent_id', |
|||
string='Affiliates', |
|||
domain=[('active', '=', True), |
|||
('is_company', '=', True)]) |
After Width: 128 | Height: 128 | Size: 9.2 KiB |
@ -0,0 +1,78 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<odoo> |
|||
|
|||
<!-- Show always parent_id plus add affiliates --> |
|||
<record id="view_partner_form_add_affiliate" model="ir.ui.view"> |
|||
<field name="name">res.partner.form</field> |
|||
<field name="model">res.partner</field> |
|||
<field eval="1" name="priority"/> |
|||
<field name="inherit_id" ref="base.view_partner_form"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="/form/sheet//div[hasclass('o_row')]/field[@name='parent_id']" position="attributes"> |
|||
<attribute name="attrs"></attribute> |
|||
</xpath> |
|||
<xpath expr='//page[@name="internal_notes"]' position="before"> |
|||
<page string="Affiliates" attrs="{'invisible': [('is_company','=',False)]}"> |
|||
<field name="affiliate_ids" |
|||
context="{'default_parent_id': active_id, 'default_is_company': True, 'default_type':'other'}" mode="kanban"> |
|||
<kanban> |
|||
<field name="color"/> |
|||
<field name="name"/> |
|||
<field name="title"/> |
|||
<field name="type"/> |
|||
<field name="email"/> |
|||
<field name="parent_id"/> |
|||
<field name="is_company"/> |
|||
<field name="function"/> |
|||
<field name="phone"/> |
|||
<field name="street"/> |
|||
<field name="street2"/> |
|||
<field name="zip"/> |
|||
<field name="city"/> |
|||
<field name="country_id"/> |
|||
<field name="mobile"/> |
|||
<field name="state_id"/> |
|||
<field name="image"/> |
|||
<field name="lang"/> |
|||
<templates> |
|||
<t t-name="kanban-box"> |
|||
<t t-set="color" t-value="kanban_color(record.color.raw_value)"/> |
|||
<div t-att-class="color + (record.title.raw_value == 1 ? ' oe_kanban_color_alert' : '') + ' oe_kanban_global_click'"> |
|||
<a t-if="!read_only_mode" type="delete" class="fa fa-times pull-right"/> |
|||
<div class="o_kanban_image"> |
|||
<img t-if="record.image.raw_value" t-att-src="'data:image/png;base64,'+record.image.raw_value"/> |
|||
<t t-if="!record.image.raw_value"> |
|||
<img t-if="record.type.raw_value === 'delivery'" t-att-src='_s + "/base/static/src/img/truck.png"'/> |
|||
<img t-if="record.type.raw_value === 'invoice'" t-att-src='_s + "/base/static/src/img/money.png"'/> |
|||
<t t-if="record.type.raw_value !== 'invoice' && record.type.raw_value !== 'delivery'"> |
|||
<img t-if="record.is_company.raw_value === true" t-att-src='_s + "/base/static/src/img/company_image.png"'/> |
|||
<img t-if="record.is_company.raw_value === false" t-att-src='_s + "/base/static/src/img/avatar.png"'/> |
|||
</t> |
|||
</t> |
|||
</div> |
|||
<div class="oe_kanban_details"> |
|||
<field name="name"/> |
|||
<div t-if="record.function.raw_value"><field name="function"/></div> |
|||
<div t-if="record.email.raw_value"><field name="email"/></div> |
|||
<div t-if="record.type.raw_value != 'contact'"> |
|||
<div> |
|||
<field name="zip"/> |
|||
<field name="city"/> |
|||
</div> |
|||
<field t-if="record.state_id.raw_value" name="state_id"/> |
|||
<field name="country_id"/> |
|||
</div> |
|||
<div t-if="record.phone.raw_value">Phone: <field name="phone"/></div> |
|||
<div t-if="record.mobile.raw_value">Mobile: <field name="mobile"/></div> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</templates> |
|||
</kanban> |
|||
</field> |
|||
</page> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
|
|||
</odoo> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue