Browse Source
Merge pull request #438 from LasLabs/release/10.0/partner_affiliate
Merge pull request #438 from LasLabs/release/10.0/partner_affiliate
[10.0][MIG] res_partner_affiliatepull/459/head
committed by
GitHub
69 changed files with 2484 additions and 490 deletions
-
59partner_affiliate/README.rst
-
5partner_affiliate/__init__.py
-
21partner_affiliate/__manifest__.py
-
45partner_affiliate/i18n/am.po
-
45partner_affiliate/i18n/ar.po
-
45partner_affiliate/i18n/bg.po
-
45partner_affiliate/i18n/bs.po
-
45partner_affiliate/i18n/ca.po
-
45partner_affiliate/i18n/cs.po
-
45partner_affiliate/i18n/da.po
-
45partner_affiliate/i18n/de.po
-
45partner_affiliate/i18n/el_GR.po
-
45partner_affiliate/i18n/en_GB.po
-
45partner_affiliate/i18n/es.po
-
45partner_affiliate/i18n/es_CR.po
-
45partner_affiliate/i18n/es_EC.po
-
45partner_affiliate/i18n/es_MX.po
-
45partner_affiliate/i18n/es_VE.po
-
45partner_affiliate/i18n/et.po
-
45partner_affiliate/i18n/eu.po
-
45partner_affiliate/i18n/fi.po
-
45partner_affiliate/i18n/fr.po
-
45partner_affiliate/i18n/fr_CA.po
-
45partner_affiliate/i18n/fr_CH.po
-
45partner_affiliate/i18n/gl.po
-
45partner_affiliate/i18n/hr.po
-
46partner_affiliate/i18n/hr_HR.po
-
45partner_affiliate/i18n/hu.po
-
46partner_affiliate/i18n/it.po
-
45partner_affiliate/i18n/ja.po
-
45partner_affiliate/i18n/lt.po
-
45partner_affiliate/i18n/lv.po
-
45partner_affiliate/i18n/mk.po
-
45partner_affiliate/i18n/mn.po
-
45partner_affiliate/i18n/nb.po
-
45partner_affiliate/i18n/nb_NO.po
-
45partner_affiliate/i18n/nl.po
-
45partner_affiliate/i18n/nl_BE.po
-
45partner_affiliate/i18n/pl.po
-
45partner_affiliate/i18n/pt.po
-
45partner_affiliate/i18n/pt_BR.po
-
45partner_affiliate/i18n/pt_PT.po
-
0partner_affiliate/i18n/res_partner_affiliate.pot
-
45partner_affiliate/i18n/ro.po
-
45partner_affiliate/i18n/ru.po
-
45partner_affiliate/i18n/sk.po
-
45partner_affiliate/i18n/sl.po
-
45partner_affiliate/i18n/sr@latin.po
-
45partner_affiliate/i18n/sv.po
-
45partner_affiliate/i18n/th.po
-
45partner_affiliate/i18n/tr.po
-
45partner_affiliate/i18n/tr_TR.po
-
45partner_affiliate/i18n/vi.po
-
45partner_affiliate/i18n/zh_CN.po
-
45partner_affiliate/i18n/zh_TW.po
-
5partner_affiliate/models/__init__.py
-
18partner_affiliate/models/res_partner.py
-
0partner_affiliate/static/description/icon.png
-
79partner_affiliate/views/res_partner_view.xml
-
22res_partner_affiliate/__init__.py
-
40res_partner_affiliate/__manifest__.py
-
49res_partner_affiliate/i18n/de.po
-
49res_partner_affiliate/i18n/es.po
-
49res_partner_affiliate/i18n/fr.po
-
50res_partner_affiliate/i18n/nl.po
-
50res_partner_affiliate/i18n/pt_BR.po
-
50res_partner_affiliate/i18n/sl.po
-
39res_partner_affiliate/res_partner.py
-
92res_partner_affiliate/res_partner_view.xml
@ -0,0 +1,59 @@ |
|||
.. 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/10.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> |
|||
* 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,5 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import models |
@ -0,0 +1,21 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# Copyright 2017 Tecnativa - Vicent Cubells |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
{ |
|||
'name': 'Partner Affiliates', |
|||
'version': '10.0.1.0.0', |
|||
'author': "Camptocamp, " |
|||
"Tecnativa, " |
|||
"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,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Společník" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Tochtergesellschaften" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobil:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Tel.:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Filiales" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Móvil:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Teléfono:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# Esther Martín Menéndez <esthermartin001@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-02-18 04:59+0000\n" |
|||
"PO-Revision-Date: 2017-02-18 04:59+0000\n" |
|||
"Last-Translator: Esther Martín Menéndez <esthermartin001@gmail.com>, 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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Kidea" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Yhteistyökumppanit" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Faksi:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Kännykkä:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Kumppani" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Puhelin:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Filiales" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax :" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobile :" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Tél. :" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partenaire" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partenaire" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# Bole <bole@dajmi5.com>, 2017 |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobitel:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
# Paolo Valier <paolo.valier@hotmail.it>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+0000\n" |
|||
"Last-Translator: Paolo Valier <paolo.valier@hotmail.it>, 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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Affiliati" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Cellulare:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefono:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partneris" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partneris" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Affiliate" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobiel:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefoon:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Relatie" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Entidade" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Afiliados" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Celular:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefone:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" |
|||
"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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Parceiro" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partener" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# gebri <gebri@inmail.sk>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+0000\n" |
|||
"Last-Translator: gebri <gebri@inmail.sk>, 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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "Filiale" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Faks:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobilni telefon:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" |
|||
"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" |
|||
"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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "İş Ortağı" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# Ozge Altinisik <ozge@altinkaya.com.tr>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+0000\n" |
|||
"Last-Translator: Ozge Altinisik <ozge@altinkaya.com.tr>, 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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Ortak" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 "Đối tác" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "" |
@ -0,0 +1,45 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2017-01-25 03:42+0000\n" |
|||
"PO-Revision-Date: 2017-01-25 03:42+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: res_partner_affiliate |
|||
#: model:ir.model.fields,field_description:res_partner_affiliate.field_res_partner_affiliate_ids |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Affiliates" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.ui.view,arch_db: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 |
|||
#: model:ir.ui.view,arch_db:res_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,18 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2012 Camptocamp SA - Yannick Vaucher |
|||
# 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" |
|||
|
|||
child_ids = fields.One2many(domain=[('is_company', '=', False)]) |
|||
affiliate_ids = fields.One2many( |
|||
comodel_name='res.partner', |
|||
inverse_name='parent_id', |
|||
string='Affiliates', |
|||
domain=[('is_company', '=', True)], |
|||
) |
Before Width: 128 | Height: 128 | Size: 9.2 KiB After Width: 128 | Height: 128 | Size: 9.2 KiB |
@ -0,0 +1,79 @@ |
|||
<?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[@class='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}" 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="fax"/> |
|||
<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 t-if="record.fax.raw_value">Fax: <field name="fax"/></div> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</templates> |
|||
</kanban> |
|||
</field> |
|||
</page> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
|
|||
</odoo> |
@ -1,22 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# Author: Yannick Vaucher |
|||
# Copyright 2012 Camptocamp SA |
|||
# |
|||
# This program is free software: you can redistribute it and/or modify |
|||
# it under the terms of the GNU Affero General Public License as |
|||
# published by the Free Software Foundation, either version 3 of the |
|||
# License, or (at your option) any later version. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU Affero General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU Affero General Public License |
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from . import res_partner |
@ -1,40 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# Author: Yannick Vaucher |
|||
# Copyright 2012 Camptocamp SA |
|||
# |
|||
# This program is free software: you can redistribute it and/or modify |
|||
# it under the terms of the GNU Affero General Public License as |
|||
# published by the Free Software Foundation, either version 3 of the |
|||
# License, or (at your option) any later version. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU Affero General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU Affero General Public License |
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
{ |
|||
'name': 'Partner Affiliates', |
|||
'version': '8.0.1.0.0', |
|||
'author': "Camptocamp,Odoo Community Association (OCA)", |
|||
'maintainer': 'Camptocamp', |
|||
'category': 'CRM', |
|||
'license': 'AGPL-3', |
|||
'depends': ['base'], |
|||
'description': """ |
|||
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""", |
|||
'website': 'http://www.camptocamp.com', |
|||
'data': [ |
|||
'res_partner_view.xml', |
|||
], |
|||
'demo': [], |
|||
'installable': False, |
|||
'auto_install': False, |
|||
'application': True |
|||
} |
@ -1,49 +0,0 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: partner-contact (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-08-28 15:54+0000\n" |
|||
"PO-Revision-Date: 2015-05-22 13:07+0000\n" |
|||
"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\n" |
|||
"Language-Team: German (http://www.transifex.com/oca/OCA-partner-contact-8-0/language/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: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
#: field:res.partner,affiliate_ids:0 |
|||
msgid "Affiliates" |
|||
msgstr "Tochtergesellschaften" |
|||
|
|||
#. 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 "Mobil:" |
|||
|
|||
#. 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 "Tel.:" |
@ -1,49 +0,0 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: partner-contact (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-08-28 15:54+0000\n" |
|||
"PO-Revision-Date: 2015-05-22 13:07+0000\n" |
|||
"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\n" |
|||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-partner-contact-8-0/language/es/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: es\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
#: field:res.partner,affiliate_ids:0 |
|||
msgid "Affiliates" |
|||
msgstr "Filiales" |
|||
|
|||
#. 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 "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Móvil:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Empresa" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Teléfono:" |
@ -1,49 +0,0 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: partner-contact (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-08-28 15:54+0000\n" |
|||
"PO-Revision-Date: 2015-05-22 13:07+0000\n" |
|||
"Last-Translator: Maxime Chambreuil <maxime.chambreuil@gmail.com>\n" |
|||
"Language-Team: French (http://www.transifex.com/oca/OCA-partner-contact-8-0/language/fr/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: fr\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
#: field:res.partner,affiliate_ids:0 |
|||
msgid "Affiliates" |
|||
msgstr "Filiales" |
|||
|
|||
#. 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 "Fax :" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobile :" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partenaire" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Tél. :" |
@ -1,50 +0,0 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# lfreeke <lfreeke@therp.nl>, 2015 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: partner-contact (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-09-23 21:40+0000\n" |
|||
"PO-Revision-Date: 2015-10-01 15:21+0000\n" |
|||
"Last-Translator: lfreeke <lfreeke@therp.nl>\n" |
|||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-partner-contact-8-0/language/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: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
#: field:res.partner,affiliate_ids:0 |
|||
msgid "Affiliates" |
|||
msgstr "Affiliate" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Contacts" |
|||
msgstr "Contacten" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobiel:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefoon:" |
@ -1,50 +0,0 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Translators: |
|||
# danimaribeiro <danimaribeiro@gmail.com>, 2015 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: partner-contact (8.0)\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-08-28 15:54+0000\n" |
|||
"PO-Revision-Date: 2015-06-21 05:07+0000\n" |
|||
"Last-Translator: danimaribeiro <danimaribeiro@gmail.com>\n" |
|||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-partner-contact-8-0/language/pt_BR/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: pt_BR\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
#: field:res.partner,affiliate_ids:0 |
|||
msgid "Affiliates" |
|||
msgstr "Afiliados" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Contacts" |
|||
msgstr "Contatos" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Fax:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Celular:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Parceiro" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefone:" |
@ -1,50 +0,0 @@ |
|||
# Translation of OpenERP Server. |
|||
# This file contains the translation of the following modules: |
|||
# * res_partner_affiliate |
|||
# |
|||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015. |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: OpenERP Server 7.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-08-02 08:25+0200\n" |
|||
"PO-Revision-Date: 2015-08-02 08:25+0200\n" |
|||
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>\n" |
|||
"Language-Team: Slovenian <translate@matmoz.si>\n" |
|||
"Language: sl\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: 8bit\n" |
|||
"Plural-Forms: \n" |
|||
"X-Generator: Poedit 1.8.2\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 "Filiale" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Contacts" |
|||
msgstr "Stiki" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Fax:" |
|||
msgstr "Faks:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Mobile:" |
|||
msgstr "Mobilni telefon:" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: model:ir.model,name:res_partner_affiliate.model_res_partner |
|||
msgid "Partner" |
|||
msgstr "Partner" |
|||
|
|||
#. module: res_partner_affiliate |
|||
#: view:res.partner:res_partner_affiliate.view_partner_form_add_affiliate |
|||
msgid "Phone:" |
|||
msgstr "Telefon:" |
@ -1,39 +0,0 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# Author: Yannick Vaucher |
|||
# Copyright 2012 Camptocamp SA |
|||
# |
|||
# This program is free software: you can redistribute it and/or modify |
|||
# it under the terms of the GNU Affero General Public License as |
|||
# published by the Free Software Foundation, either version 3 of the |
|||
# License, or (at your option) any later version. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU Affero General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU Affero General Public License |
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from openerp.osv import orm, fields |
|||
|
|||
|
|||
class ResPartner(orm.Model): |
|||
""" |
|||
Add relation affiliate_ids |
|||
""" |
|||
_name = "res.partner" |
|||
_inherit = "res.partner" |
|||
|
|||
_columns = { |
|||
'child_ids': fields.one2many( |
|||
'res.partner', 'parent_id', |
|||
'Contacts', domain=[('is_company', '=', False)]), |
|||
'affiliate_ids': fields.one2many( |
|||
'res.partner', 'parent_id', |
|||
'Affiliates', domain=[('is_company', '=', True)]), |
|||
} |
@ -1,92 +0,0 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
|
|||
<!-- Form view --> |
|||
|
|||
<!-- 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"> |
|||
<field name="parent_id" position="attributes"> |
|||
<attribute name="attrs"></attribute> |
|||
</field> |
|||
<page string="Contacts" position="after"> |
|||
<page string="Affiliates" attrs="{'invisible': [('is_company','=',False)]}"> |
|||
<field name="affiliate_ids" context="{'default_parent_id': active_id, 'default_is_company': True}" mode="kanban"> |
|||
<kanban> |
|||
<field name="color"/> |
|||
<field name="name"/> |
|||
<field name="title"/> |
|||
<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="fax"/> |
|||
<field name="state_id"/> |
|||
<field name="has_image"/> |
|||
<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' : '')" style="position: relative"> |
|||
<a t-if="! read_only_mode" type="delete" style="position: absolute; right: 0; padding: 4px; diplay: inline-block">X</a> |
|||
<div class="oe_module_vignette"> |
|||
<a type="open"> |
|||
<t t-if="record.has_image.raw_value === true"> |
|||
<img t-att-src="kanban_image('res.partner', 'image', record.id.value, {'preview_image': 'image_small'})" class="oe_avatar oe_kanban_avatar_smallbox"/> |
|||
</t> |
|||
<t t-if="record.image and record.image.raw_value !== false"> |
|||
<img t-att-src="'data:image/png;base64,'+record.image.raw_value" class="oe_avatar oe_kanban_avatar_smallbox"/> |
|||
</t> |
|||
<t t-if="record.has_image.raw_value === false and (!record.image or record.image.raw_value === false)"> |
|||
<t t-if="record.is_company.raw_value === true"> |
|||
<img t-att-src='_s + "/base/static/src/img/company_image.png"' class="oe_kanban_image oe_kanban_avatar_smallbox"/> |
|||
</t> |
|||
<t t-if="record.is_company.raw_value === false"> |
|||
<img t-att-src='_s + "/base/static/src/img/avatar.png"' class="oe_kanban_image oe_kanban_avatar_smallbox"/> |
|||
</t> |
|||
</t> |
|||
</a> |
|||
<div class="oe_module_desc"> |
|||
<div class="oe_kanban_box_content oe_kanban_color_bglight oe_kanban_color_border"> |
|||
<table class="oe_kanban_table"> |
|||
<tr> |
|||
<td class="oe_kanban_title1" align="left" valign="middle"> |
|||
<h4><a type="open"><field name="name"/></a></h4> |
|||
<i><div t-if="record.function.raw_value"> |
|||
<field name="function"/></div></i> |
|||
<div><a t-if="record.email.raw_value" title="Mail" t-att-href="'mailto:'+record.email.value"> |
|||
<field name="email"/> |
|||
</a></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 t-if="record.fax.raw_value">Fax: <field name="fax"/></div> |
|||
</td> |
|||
</tr> |
|||
</table> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</div> |
|||
</t> |
|||
</templates> |
|||
</kanban> |
|||
</field> |
|||
</page> |
|||
</page> |
|||
</field> |
|||
</record> |
|||
|
|||
</data> |
|||
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue