Browse Source
Merge pull request #649 from Tecnativa/9.0-mig-base_import_match
Merge pull request #649 from Tecnativa/9.0-mig-base_import_match
[9.0] [MIG] base_import_match modulepull/666/head
committed by
GitHub
74 changed files with 9492 additions and 0 deletions
-
125base_import_match/README.rst
-
6base_import_match/__init__.py
-
28base_import_match/__openerp__.py
-
33base_import_match/data/base_import_match.xml
-
45base_import_match/demo/base_import_match.xml
-
154base_import_match/i18n/am.po
-
154base_import_match/i18n/ar.po
-
154base_import_match/i18n/bg.po
-
154base_import_match/i18n/bs.po
-
154base_import_match/i18n/ca.po
-
154base_import_match/i18n/cs.po
-
154base_import_match/i18n/da.po
-
154base_import_match/i18n/de.po
-
154base_import_match/i18n/el_GR.po
-
154base_import_match/i18n/en_GB.po
-
154base_import_match/i18n/es.po
-
154base_import_match/i18n/es_AR.po
-
154base_import_match/i18n/es_CO.po
-
154base_import_match/i18n/es_CR.po
-
154base_import_match/i18n/es_EC.po
-
154base_import_match/i18n/es_ES.po
-
154base_import_match/i18n/es_MX.po
-
154base_import_match/i18n/es_PE.po
-
154base_import_match/i18n/es_PY.po
-
154base_import_match/i18n/es_VE.po
-
154base_import_match/i18n/et.po
-
154base_import_match/i18n/fa.po
-
154base_import_match/i18n/fi.po
-
154base_import_match/i18n/fr.po
-
154base_import_match/i18n/fr_CA.po
-
154base_import_match/i18n/fr_CH.po
-
154base_import_match/i18n/gl.po
-
154base_import_match/i18n/gl_ES.po
-
154base_import_match/i18n/he.po
-
154base_import_match/i18n/hr.po
-
154base_import_match/i18n/hr_HR.po
-
155base_import_match/i18n/it.po
-
154base_import_match/i18n/ja.po
-
154base_import_match/i18n/ko.po
-
154base_import_match/i18n/lt.po
-
154base_import_match/i18n/lv.po
-
154base_import_match/i18n/mk.po
-
154base_import_match/i18n/mn.po
-
154base_import_match/i18n/nb.po
-
154base_import_match/i18n/nl.po
-
154base_import_match/i18n/nl_BE.po
-
154base_import_match/i18n/pl.po
-
154base_import_match/i18n/pt.po
-
154base_import_match/i18n/pt_BR.po
-
154base_import_match/i18n/pt_PT.po
-
154base_import_match/i18n/ru.po
-
154base_import_match/i18n/sk.po
-
155base_import_match/i18n/sl.po
-
154base_import_match/i18n/sr.po
-
154base_import_match/i18n/sr@latin.po
-
154base_import_match/i18n/sv.po
-
154base_import_match/i18n/th.po
-
154base_import_match/i18n/tr.po
-
154base_import_match/i18n/uk.po
-
154base_import_match/i18n/vi.po
-
154base_import_match/i18n/zh_CN.po
-
154base_import_match/i18n/zh_TW.po
-
6base_import_match/models/__init__.py
-
298base_import_match/models/base_import.py
-
5base_import_match/security/ir.model.access.csv
-
BINbase_import_match/static/description/icon.png
-
6base_import_match/tests/__init__.py
-
2base_import_match/tests/import_data/res_partner_email.csv
-
2base_import_match/tests/import_data/res_partner_name.csv
-
2base_import_match/tests/import_data/res_partner_parent_name_is_company.csv
-
2base_import_match/tests/import_data/res_partner_vat.csv
-
2base_import_match/tests/import_data/res_users_login.csv
-
69base_import_match/tests/test_import.py
-
81base_import_match/views/base_import_match_view.xml
@ -0,0 +1,125 @@ |
|||||
|
.. 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 |
||||
|
|
||||
|
================= |
||||
|
Base Import Match |
||||
|
================= |
||||
|
|
||||
|
By default, when importing data (like CSV import) with the ``base_import`` |
||||
|
module, Odoo follows this rule: |
||||
|
|
||||
|
- If you import the XMLID of a record, make an **update**. |
||||
|
- If you do not, **create** a new record. |
||||
|
|
||||
|
This module allows you to set additional rules to match if a given import is an |
||||
|
update or a new record. |
||||
|
|
||||
|
This is useful when you need to sync heterogeneous databases, and the field you |
||||
|
use to match records in those databases with Odoo's is not the XMLID but the |
||||
|
name, VAT, email, etc. |
||||
|
|
||||
|
After installing this module, the import logic will be changed to: |
||||
|
|
||||
|
- If you import the XMLID of a record, make an **update**. |
||||
|
- If you do not: |
||||
|
|
||||
|
- If there are import match rules for the model you are importing: |
||||
|
|
||||
|
- Discard the rules that require fields you are not importing. |
||||
|
- Traverse the remaining rules one by one in order to find a match in the database. |
||||
|
|
||||
|
- Skip the rule if it requires a special condition that is not |
||||
|
satisfied. |
||||
|
- If one match is found: |
||||
|
|
||||
|
- Stop traversing the rest of valid rules. |
||||
|
- **Update** that record. |
||||
|
- If zero or multiple matches are found: |
||||
|
|
||||
|
- Continue with the next rule. |
||||
|
- If all rules are exhausted and no single match is found: |
||||
|
|
||||
|
- **Create** a new record. |
||||
|
- If there are no match rules for your model: |
||||
|
|
||||
|
- **Create** a new record. |
||||
|
|
||||
|
By default 2 rules are installed for production instances: |
||||
|
|
||||
|
- One rule that will allow you to update companies based on their VAT, when |
||||
|
``is_company`` is ``True``. |
||||
|
- One rule that will allow you to update users based on their login. |
||||
|
|
||||
|
In demo instances there are more examples. |
||||
|
|
||||
|
Configuration |
||||
|
============= |
||||
|
|
||||
|
To configure this module, you need to: |
||||
|
|
||||
|
#. Go to *Settings > Technical > Database Structure > Import Match*. |
||||
|
#. *Create*. |
||||
|
#. Choose a *Model*. |
||||
|
#. Choose the *Fields* that conform an unique key in that model. |
||||
|
#. If the rule must be used only for certain imported values, check |
||||
|
*Conditional* and enter the **exact string** that is going to be imported |
||||
|
in *Imported value*. |
||||
|
|
||||
|
#. Keep in mind that the match here is evaluated as a case sensitive |
||||
|
**text string** always. If you enter e.g. ``True``, it will match that |
||||
|
string, but will not match ``1`` or ``true``. |
||||
|
#. *Save*. |
||||
|
|
||||
|
In that list view, you can sort rules by drag and drop. |
||||
|
|
||||
|
Usage |
||||
|
===== |
||||
|
|
||||
|
To use this module, you need to: |
||||
|
|
||||
|
#. Follow steps in **Configuration** section above. |
||||
|
#. Go to any list view. |
||||
|
#. Press *Import* and follow the import procedure as usual. |
||||
|
|
||||
|
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas |
||||
|
:alt: Try me on Runbot |
||||
|
:target: https://runbot.odoo-community.org/runbot/149/9.0 |
||||
|
|
||||
|
Known Issues / Roadmap |
||||
|
====================== |
||||
|
|
||||
|
* Add a setting to throw an error when multiple matches are found, instead of |
||||
|
falling back to creation of new record. |
||||
|
|
||||
|
Bug Tracker |
||||
|
=========== |
||||
|
|
||||
|
Bugs are tracked on `GitHub Issues |
||||
|
<https://github.com/OCA/server-tools/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 |
||||
|
======= |
||||
|
|
||||
|
Contributors |
||||
|
------------ |
||||
|
|
||||
|
* Jairo Llopis <yajo.sk8@gmail.com> |
||||
|
* Vicent Cubells <vicent.cubells@tecnativa.com> |
||||
|
|
||||
|
Maintainer |
||||
|
---------- |
||||
|
|
||||
|
.. image:: https://odoo-community.org/logo.png |
||||
|
:alt: Odoo Community Association |
||||
|
:target: https://odoo-community.org |
||||
|
|
||||
|
This module is maintained by the OCA. |
||||
|
|
||||
|
OCA, or the Odoo Community Association, is a nonprofit organization whose |
||||
|
mission is to support the collaborative development of Odoo features and |
||||
|
promote its widespread use. |
||||
|
|
||||
|
To contribute to this module, please visit https://odoo-community.org. |
@ -0,0 +1,6 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from . import models |
@ -0,0 +1,28 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
{ |
||||
|
"name": "Base Import Match", |
||||
|
"summary": "Try to avoid duplicates before importing", |
||||
|
"version": "9.0.1.0.0", |
||||
|
"category": "Tools", |
||||
|
"website": "https://tecnativa.com", |
||||
|
"author": "Grupo ESOC Ingeniería de Servicios," |
||||
|
"Tecnativa, " |
||||
|
"Odoo Community Association (OCA)", |
||||
|
"license": "AGPL-3", |
||||
|
"application": False, |
||||
|
"installable": True, |
||||
|
"depends": [ |
||||
|
"base_import", |
||||
|
], |
||||
|
"data": [ |
||||
|
"security/ir.model.access.csv", |
||||
|
"data/base_import_match.xml", |
||||
|
"views/base_import_match_view.xml", |
||||
|
], |
||||
|
"demo": [ |
||||
|
"demo/base_import_match.xml", |
||||
|
], |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<!-- Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
||||
|
|
||||
|
<odoo noupdate="1"> |
||||
|
<!-- Match partners by VAT when is_company is True --> |
||||
|
<record model="base_import.match" id="res_partner_vat"> |
||||
|
<field name="model_id" eval="ref('base.model_res_partner')"/> |
||||
|
<field name="sequence" type="int">10</field> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_vat_vat"> |
||||
|
<field name="match_id" ref="base_import_match.res_partner_vat"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_vat"/> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_vat_is_company"> |
||||
|
<field name="match_id" ref="base_import_match.res_partner_vat"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_is_company"/> |
||||
|
<field name="conditional">True</field> |
||||
|
<field name="imported_value">True</field> |
||||
|
</record> |
||||
|
|
||||
|
<!-- Match users by login --> |
||||
|
<record model="base_import.match" id="res_users_login"> |
||||
|
<field name="model_id" eval="ref('base.model_res_users')"/> |
||||
|
<field name="sequence" type="int">50</field> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_users_login_login"> |
||||
|
<field name="match_id" ref="base_import_match.res_users_login"/> |
||||
|
<field name="field_id" ref="base.field_res_users_login"/> |
||||
|
</record> |
||||
|
|
||||
|
</odoo> |
@ -0,0 +1,45 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<!-- Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
||||
|
<odoo noupdate="1"> |
||||
|
|
||||
|
<!-- Match partners by name, parent_id and is_company --> |
||||
|
<record model="base_import.match" id="res_partner_parent_name_is_company"> |
||||
|
<field name="model_id" eval="ref('base.model_res_partner')"/> |
||||
|
<field name="sequence" type="int">20</field> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_parent_name_is_company_name"> |
||||
|
<field name="match_id" ref="res_partner_parent_name_is_company"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_name"/> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_parent_name_is_company_parent"> |
||||
|
<field name="match_id" ref="res_partner_parent_name_is_company"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_parent_id"/> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_parent_name_is_company_is_company"> |
||||
|
<field name="match_id" ref="res_partner_parent_name_is_company"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_is_company"/> |
||||
|
</record> |
||||
|
|
||||
|
<!-- Match partner by email --> |
||||
|
<record model="base_import.match" id="res_partner_email"> |
||||
|
<field name="model_id" eval="ref('base.model_res_partner')"/> |
||||
|
<field name="sequence" type="int">30</field> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_email_email"> |
||||
|
<field name="match_id" ref="base_import_match.res_partner_email"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_email"/> |
||||
|
</record> |
||||
|
|
||||
|
<!-- Match partner by name --> |
||||
|
<record model="base_import.match" id="res_partner_name"> |
||||
|
<field name="model_id" eval="ref('base.model_res_partner')"/> |
||||
|
<field name="sequence" type="int">40</field> |
||||
|
</record> |
||||
|
<record model="base_import.match.field" id="res_partner_name_name"> |
||||
|
<field name="match_id" ref="base_import_match.res_partner_name"/> |
||||
|
<field name="field_id" ref="base.field_res_partner_name"/> |
||||
|
</record> |
||||
|
|
||||
|
</odoo> |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-server-tools-8-0/language/am/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: am\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ar/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: ar\n" |
||||
|
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "أنشئ بواسطة" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "أنشئ في" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "اسم العرض" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "تجميع حسب" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "المعرف" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "آخر تعديل في" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "آخر تحديث بواسطة" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "آخر تحديث في" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "الاسم" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "المسلسل" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/bg/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: bg\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Създадено от" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Създадено на" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Име за Показване" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Групирай По" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Последно обновено на" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Последно обновено от" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Последно обновено на" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Име" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Последователност" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/bs/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: bs\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Kreirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Prikaži naziv" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupiši po" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnje mijenjano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnje ažurirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Ime" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sekvenca" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ca/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: ca\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creat per" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creat el" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Darrera Actualització per" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Darrera Actualització el" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Czech (http://www.transifex.com/oca/OCA-server-tools-8-0/language/cs/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: cs\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Vytvořil(a)" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Vytvořeno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Zobrazovaný název" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Seskupit podle" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Naposled upraveno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Naposled upraveno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Naposled upraveno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Název" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Číselná řada" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Danish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/da/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: da\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Oprettet af" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Oprettet den" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Vist navn" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Gruppér efter" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "Id" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Sidst ændret den" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Sidst opdateret af" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Sidst opdateret den" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Navn" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Rækkefølge" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-21 00:47+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Erstellt von" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Erstellt am:" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Anzeigename" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Feld" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Felder" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Gruppieren nach" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zuletzt geändert am" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zuletzt aktualisiert von" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zuletzt aktualisiert am" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modell" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Name" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Reihenfolge" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/el_GR/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: el_GR\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Δημιουργήθηκε από " |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Δημιουργήθηκε στις" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "Κωδικός" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Τελευταία ενημέρωση από" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Τελευταία ενημέρωση στις" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/en_GB/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: en_GB\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Created by" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Created on" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Display Name" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Group By" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Last Modified on" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Last Updated by" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Last Updated on" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Name" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sequence" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado el" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "Configuración para deduplicar antes de importar CSV." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nombre a mostrar" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Campo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Campos" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "Campos que definirán una clave única." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "Coincidencia de importación" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "En este modelo se aplicará la coincidencia." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización el" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modelo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Argentina) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_AR/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_AR\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Mostrar Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última modificación en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización realizada por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización el" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Colombia) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_CO/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_CO\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nombre Público" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última Modificación el" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Actualizado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Actualizado" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_CR/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_CR\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Ecuador) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_EC/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_EC\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nombre mostrado" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID (identificación)" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última modificación en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización de" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Spain) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_ES/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_ES\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Mexico) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_MX/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_MX\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nombre desplegado" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Ultima modificacion realizada" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Ultima actualizacion por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Ultima actualización realizada" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Peru) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_PE/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_PE\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nombre a Mostrar" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Ultima Modificación en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Actualizado última vez por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Ultima Actualización" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Paraguay) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_PY/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_PY\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Ultima actualización por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Ultima actualización en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Spanish (Venezuela) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es_VE/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: es_VE\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Mostrar nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Modificada por última vez" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última actualización realizada por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Ultima actualizacion en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nombre" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Secuencia" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Estonian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/et/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: et\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Loonud" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Loodud" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Näidatav nimi" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Rühmitamine" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Viimati muudetud" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Viimati uuendatud" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Viimati uuendatud" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nimi" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Jada" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Persian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fa/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: fa\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "ایجاد شده توسط" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "ایجاد شده در" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "نام نمایشی" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "گروهبندی برمبنای" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "شناسه" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "تاریخ آخرین بهروزرسانی" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "آخرین به روز رسانی توسط" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "آخرین به روز رسانی در" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "نام" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "دنباله" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-06-09 18:30+0000\n" |
||||
|
"PO-Revision-Date: 2016-06-06 13:36+0000\n" |
||||
|
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>\n" |
||||
|
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fi/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: fi\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Luonut" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Luotu" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nimi" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Kentät" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Viimeksi muokattu" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Viimeksi päivittänyt" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Viimeksi päivitetty" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Mall" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nimi" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: French (http://www.transifex.com/oca/OCA-server-tools-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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Créé par" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Créé le" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nom affiché" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Champ" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Champs" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grouper par" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Dernière modification le" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Mis à jour par" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Mis à jour le" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modèle" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nom" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: French (Canada) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Champs" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modèle" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nom" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: French (Switzerland) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/fr_CH/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: fr_CH\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Créé par" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Créé le" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Modifié par" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Modifié le" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Galician (http://www.transifex.com/oca/OCA-server-tools-8-0/language/gl/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: gl\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Creado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Creado en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última modificación" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "ültima actualización por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última actualización en" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Galician (Spain) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/gl_ES/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: gl_ES\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Hebrew (http://www.transifex.com/oca/OCA-server-tools-8-0/language/he/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: he\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "נוצר על ידי" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "נוצר ב-" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "השם המוצג" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "קבץ לפי" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "מזהה" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "תאריך שינוי אחרון" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "עודכן לאחרונה על ידי" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "עודכן לאחרונה על" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "שם" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "רצף" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/hr/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: hr\n" |
||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Kreirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Naziv " |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Polja" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupiraj po" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnje modificirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnje ažuriranje" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Model" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Naziv" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sekvenca" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-21 00:47+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/hr_HR/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: hr_HR\n" |
||||
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Kreirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Naziv" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnje modificirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnji ažurirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnje ažurirano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,155 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
# Paolo Valier, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-11-25 14:57+0000\n" |
||||
|
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n" |
||||
|
"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: it\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Created by" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Created on" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nome da visualizzare" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Campo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Campi" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Raggruppa per" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "Valore importato" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Ultima modifica il" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Last Updated by" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Last Updated on" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modello" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sequenza" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Japanese (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ja/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: ja\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "作成者" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "作成日" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "表示名" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "グループ化" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "最終更新日" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "最終更新者" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "最終更新日" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "名称" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "付番" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Korean (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ko/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: ko\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "작성자" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "작성일" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "표시 이름" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "그룹화" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "최근 수정" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "최근 갱신한 사람" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "최근 갱신 날짜" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "이름" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "순서" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/lt/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: lt\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Sukūrė" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Sukurta" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Vaizduojamas pavadinimas" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupuoti pagal" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Paskutinį kartą keista" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Paskutinį kartą atnaujino" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Paskutinį kartą atnaujinta" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Pavadinimas" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Seka" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Latvian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/lv/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: lv\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Izveidoja" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Izveidots" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupēt pēc" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Pēdējo reizi atjaunoja" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Pēdējās izmaiņas" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nosaukums" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sērija" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/mk/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: mk\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Креирано од" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Креирано на" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Прикажи име" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Групирај по" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Последна промена на" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Последно ажурирање од" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Последно ажурирање на" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Име" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Секвенца" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/mn/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: mn\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Үүсгэгч" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Үүсгэсэн" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Дэлгэцийн Нэр" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Бүлэглэх" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Сүүлийн засвар хийсэн огноо" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Сүүлийн засвар хийсэн" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Сүүлийн засвар хийсэн огноо" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Нэр" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Дараалал" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Norwegian Bokmål (http://www.transifex.com/oca/OCA-server-tools-8-0/language/nb/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: nb\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Opprettet av" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Opprettet den" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Visnings navn" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupper etter" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Sist oppdatert " |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Sist oppdatert av" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Sist oppdatert" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Navn" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sekvens" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-server-tools-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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Aangemaakt door" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Aangemaakt op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Te tonen naam" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Groepeer op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Laatst bijgewerkt op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Laatst bijgewerkt door" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Laatst bijgewerkt op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Naam" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Dutch (Belgium) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/nl_BE/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: nl_BE\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Gemaakt door" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Gemaakt op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Schermnaam" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Groeperen op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Laatst Aangepast op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Laatst bijgewerkt door" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Laatst bijgewerkt op" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Naam:" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Volgorde" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Polish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pl/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: pl\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Utworzone przez" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Utworzono" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Wyświetlana nazwa " |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Pogrupuj wg" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Ostatnio modyfikowano" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Ostatnio modyfikowane przez" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Ostatnia zmiana" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nazwa" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Numeracja" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: pt\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Criado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Criado em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Campos" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupar por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última Modificação Em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última Modificação Por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última Atualização Em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modelo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Criado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Criado em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nome para Mostrar" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Campo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Campos" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Agrupado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "Identificação" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última atualização em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última atualização por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última atualização em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modelo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sequência" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-09-16 09:29+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_PT/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: pt_PT\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Criado por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Criado em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Nome a Apresentar" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Campos" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Última Modificação Em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Última Atualização Por" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Última Atualização Em" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Modelo" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Nome" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Russian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/ru/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: ru\n" |
||||
|
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Поле" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Модель" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Название" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sk/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: sk\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Vytvoril" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Vytvorené" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Zobraziť meno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Zoskupiť podľa" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Posledná modifikácia" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Naposledy upravoval" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Naposledy upravované" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Meno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Postupnosť" |
@ -0,0 +1,155 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2016 |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-28 09:48+0000\n" |
||||
|
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n" |
||||
|
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: sl\n" |
||||
|
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "Pogojno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Ustvaril" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Ustvarjeno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "Odstrani duplikat nastavitev pred CSV uvozi." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Prikazni naziv" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "Omogočite, če želite uporabljati to polje za nekatere pogoje." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Polje" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "Določitev ujemanja uvoženega polja" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "Polje, ki bo del unikatnega ključa" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Polja" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "Polja, ki bodo določala unikatni ključ" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Združi po" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "Če se uvožena vrednost ne ujema s to, se opusti celotno pravilo ujemanja. Pozor, ti podatki se vedno obravnavajo kot niz, primerjava pa upošteva velike-male začetnice, zato pri nastavitvi na 'Pravilno' NE bo ujemanja z '1' in niti s 'pravilno', ampak le NATANČNO 'Pravilno'." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "Ujemanje uvoza" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "Uvožena vrednost" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "V tem modelu boste uveljavili ujemanje." |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnjič spremenjeno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnji posodobil" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnjič posodobljeno" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "Ujemanje" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Model" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Naziv" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Zaporedje" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Serbian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sr/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: sr\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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreiran" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupiši po" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Ime" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Niz" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Serbian (Latin) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sr@latin/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: sr@latin\n" |
||||
|
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Kreirao" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Kreiran" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Ime za prikaz" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupisano po" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Zadnja izmjena" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Zadnja izmjena" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Zadnja izmjena" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Ime:" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sekvenca" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Swedish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sv/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: sv\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Skapad av" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Skapad den" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Visa namn" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Gruppera efter" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Senast redigerad" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Senast uppdaterad av" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Senast uppdaterad" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Namn" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Nummerserie" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Thai (http://www.transifex.com/oca/OCA-server-tools-8-0/language/th/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: th\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "สร้างโดย" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "สร้างเมื่อ" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "ชื่อที่ใช้แสดง" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "จัดกลุ่มโดย" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "รหัส" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "แก้ไขครั้งสุดท้ายเมื่อ" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "อัพเดทครั้งสุดท้ายโดย" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "อัพเดทครั้งสุดท้ายเมื่อ" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "ชื่อ" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "กำหนดเลขที่เอกสาร" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-05-28 02:41+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: tr\n" |
||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Oluşturan" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Oluşturuldu" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "Alan" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "Alanlar" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Grupla" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Son güncelleyen" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Son güncellenme" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "Model" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Adı" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Sıra" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Ukrainian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/uk/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: uk\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: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Створив" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Дата створення" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Назва для відображення" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Групувати за" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Остання модифікація" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Востаннє оновив" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Останнє оновлення" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Name" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Послідовність" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Vietnamese (http://www.transifex.com/oca/OCA-server-tools-8-0/language/vi/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: vi\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "Được tạo bởi" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "Được tạo vào" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "Tên hiển thị" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "Group By" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "Sửa lần cuối vào" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "Last Updated by" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "Cập nhật lần cuối vào" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "Tên" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "Trình tự" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_CN/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: zh_CN\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "创建者" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "创建时间" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "显示名称" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "分组" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "ID" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "最后修改时间" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "最后更新者" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "上次更新日期" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "名称" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "序号" |
@ -0,0 +1,154 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * base_import_match |
||||
|
# |
||||
|
# Translators: |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: server-tools (8.0)\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"POT-Creation-Date: 2016-11-28 21:28+0000\n" |
||||
|
"PO-Revision-Date: 2016-05-27 15:24+0000\n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/zh_TW/)\n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Language: zh_TW\n" |
||||
|
"Plural-Forms: nplurals=1; plural=0;\n" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,conditional:0 |
||||
|
msgid "Conditional" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_uid:0 |
||||
|
#: field:base_import.match.field,create_uid:0 |
||||
|
msgid "Created by" |
||||
|
msgstr "建立者" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,create_date:0 |
||||
|
#: field:base_import.match.field,create_date:0 |
||||
|
msgid "Created on" |
||||
|
msgstr "建立於" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match |
||||
|
msgid "Deduplicate settings prior to CSV imports." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,display_name:0 |
||||
|
#: field:base_import.match.field,display_name:0 |
||||
|
msgid "Display Name" |
||||
|
msgstr "顯示名稱" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,conditional:0 |
||||
|
msgid "Enable if you want to use this field only in some conditions." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,field_id:0 |
||||
|
msgid "Field" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: model:ir.model,name:base_import_match.model_base_import_match_field |
||||
|
msgid "Field import match definition" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,field_id:0 |
||||
|
msgid "Field that will be part of an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,field_ids:0 |
||||
|
msgid "Fields" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,field_ids:0 |
||||
|
msgid "Fields that will define an unique key." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
msgid "Group By" |
||||
|
msgstr "分組方式" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,id:0 field:base_import.match.field,id:0 |
||||
|
msgid "ID" |
||||
|
msgstr "編號" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match.field,imported_value:0 |
||||
|
msgid "" |
||||
|
"If the imported value is not this, the whole matching rule will be " |
||||
|
"discarded. Be careful, this data is always treated as a string, and " |
||||
|
"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor" |
||||
|
" 'true', only EXACTLY 'True'." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_form_view |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: view:base_import.match:base_import_match.match_tree_view |
||||
|
#: model:ir.actions.act_window,name:base_import_match.match_action |
||||
|
#: model:ir.ui.menu,name:base_import_match.match_menu |
||||
|
msgid "Import Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,imported_value:0 |
||||
|
msgid "Imported value" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: help:base_import.match,model_id:0 help:base_import.match.field,model_id:0 |
||||
|
msgid "In this model you will apply the match." |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,__last_update:0 |
||||
|
#: field:base_import.match.field,__last_update:0 |
||||
|
msgid "Last Modified on" |
||||
|
msgstr "最後修改:" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_uid:0 |
||||
|
#: field:base_import.match.field,write_uid:0 |
||||
|
msgid "Last Updated by" |
||||
|
msgstr "最後更新:" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,write_date:0 |
||||
|
#: field:base_import.match.field,write_date:0 |
||||
|
msgid "Last Updated on" |
||||
|
msgstr "最後更新於" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match.field,match_id:0 |
||||
|
msgid "Match" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: view:base_import.match:base_import_match.match_search_view |
||||
|
#: field:base_import.match,model_id:0 field:base_import.match,model_name:0 |
||||
|
#: field:base_import.match.field,model_id:0 |
||||
|
msgid "Model" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,name:0 field:base_import.match.field,name:0 |
||||
|
msgid "Name" |
||||
|
msgstr "名稱" |
||||
|
|
||||
|
#. module: base_import_match |
||||
|
#: field:base_import.match,sequence:0 |
||||
|
msgid "Sequence" |
||||
|
msgstr "序列" |
@ -0,0 +1,6 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from . import base_import |
@ -0,0 +1,298 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
from openerp import api, fields, models |
||||
|
from openerp import SUPERUSER_ID # TODO remove in v10 |
||||
|
|
||||
|
|
||||
|
class BaseImportMatch(models.Model): |
||||
|
_name = "base_import.match" |
||||
|
_description = "Deduplicate settings prior to CSV imports." |
||||
|
_order = "sequence, name" |
||||
|
|
||||
|
name = fields.Char( |
||||
|
compute="_compute_name", |
||||
|
store=True, |
||||
|
index=True) |
||||
|
sequence = fields.Integer(index=True) |
||||
|
model_id = fields.Many2one( |
||||
|
"ir.model", |
||||
|
"Model", |
||||
|
required=True, |
||||
|
ondelete="cascade", |
||||
|
domain=[("transient ", "=", False)], |
||||
|
help="In this model you will apply the match.") |
||||
|
model_name = fields.Char( |
||||
|
related="model_id.model", |
||||
|
store=True, |
||||
|
index=True) |
||||
|
field_ids = fields.One2many( |
||||
|
comodel_name="base_import.match.field", |
||||
|
inverse_name="match_id", |
||||
|
string="Fields", |
||||
|
required=True, |
||||
|
help="Fields that will define an unique key.") |
||||
|
|
||||
|
@api.multi |
||||
|
@api.onchange("model_id") |
||||
|
def _onchange_model_id(self): |
||||
|
self.field_ids.unlink() |
||||
|
|
||||
|
@api.model |
||||
|
def create(self, vals): |
||||
|
"""Wrap the model after creation.""" |
||||
|
result = super(BaseImportMatch, self).create(vals) |
||||
|
self._load_autopatch(result.model_name) |
||||
|
return result |
||||
|
|
||||
|
@api.multi |
||||
|
def unlink(self): |
||||
|
"""Unwrap the model after deletion.""" |
||||
|
models = set(self.mapped("model_name")) |
||||
|
result = super(BaseImportMatch, self).unlink() |
||||
|
for model in models: |
||||
|
self._load_autopatch(model) |
||||
|
return result |
||||
|
|
||||
|
@api.multi |
||||
|
def write(self, vals): |
||||
|
"""Wrap the model after writing.""" |
||||
|
result = super(BaseImportMatch, self).write(vals) |
||||
|
|
||||
|
if "model_id" in vals or "model_name" in vals: |
||||
|
for s in self: |
||||
|
self._load_autopatch(s.model_name) |
||||
|
|
||||
|
return result |
||||
|
|
||||
|
# TODO convert to @api.model_cr in v10 |
||||
|
def _register_hook(self, cr): |
||||
|
"""Autopatch on init.""" |
||||
|
models = set( |
||||
|
self.browse( |
||||
|
cr, |
||||
|
SUPERUSER_ID, |
||||
|
self.search(cr, SUPERUSER_ID, list())) |
||||
|
.mapped("model_name")) |
||||
|
for model in models: |
||||
|
self._load_autopatch(cr, SUPERUSER_ID, model) |
||||
|
|
||||
|
@api.multi |
||||
|
@api.depends("model_id", "field_ids") |
||||
|
def _compute_name(self): |
||||
|
"""Automatic self-descriptive name for the setting records.""" |
||||
|
for s in self: |
||||
|
s.name = u"{}: {}".format( |
||||
|
s.model_id.display_name, |
||||
|
" + ".join( |
||||
|
s.field_ids.mapped( |
||||
|
lambda r: ( |
||||
|
(u"{} ({})" if r.conditional else u"{}").format( |
||||
|
r.field_id.name, |
||||
|
r.imported_value))))) |
||||
|
|
||||
|
@api.model |
||||
|
def _match_find(self, model, converted_row, imported_row): |
||||
|
"""Find a update target for the given row. |
||||
|
|
||||
|
This will traverse by order all match rules that can be used with the |
||||
|
imported data, and return a match for the first rule that returns a |
||||
|
single result. |
||||
|
|
||||
|
:param openerp.models.Model model: |
||||
|
Model object that is being imported. |
||||
|
|
||||
|
:param dict converted_row: |
||||
|
Row converted to Odoo api format, like the 3rd value that |
||||
|
:meth:`openerp.models.Model._convert_records` returns. |
||||
|
|
||||
|
:param dict imported_row: |
||||
|
Row as it is being imported, in format:: |
||||
|
|
||||
|
{ |
||||
|
"field_name": "string value", |
||||
|
"other_field": "True", |
||||
|
... |
||||
|
} |
||||
|
|
||||
|
:return openerp.models.Model: |
||||
|
Return a dataset with one single match if it was found, or an |
||||
|
empty dataset if none or multiple matches were found. |
||||
|
""" |
||||
|
# Get usable rules to perform matches |
||||
|
usable = self._usable_for_load(model._name, converted_row.keys()) |
||||
|
|
||||
|
# Traverse usable combinations |
||||
|
for combination in usable: |
||||
|
combination_valid = True |
||||
|
domain = list() |
||||
|
|
||||
|
for field in combination.field_ids: |
||||
|
# Check imported value if it is a conditional field |
||||
|
if field.conditional: |
||||
|
# Invalid combinations are skipped |
||||
|
if imported_row[field.name] != field.imported_value: |
||||
|
combination_valid = False |
||||
|
break |
||||
|
|
||||
|
domain.append((field.name, "=", converted_row[field.name])) |
||||
|
|
||||
|
if not combination_valid: |
||||
|
continue |
||||
|
|
||||
|
match = model.search(domain) |
||||
|
|
||||
|
# When a single match is found, stop searching |
||||
|
if len(match) == 1: |
||||
|
return match |
||||
|
|
||||
|
# Return an empty match if none or multiple was found |
||||
|
return model |
||||
|
|
||||
|
@api.model |
||||
|
def _load_wrapper(self): |
||||
|
"""Create a new load patch method.""" |
||||
|
@api.model |
||||
|
def wrapper(self, fields, data): |
||||
|
"""Try to identify rows by other pseudo-unique keys. |
||||
|
|
||||
|
It searches for rows that have no XMLID specified, and gives them |
||||
|
one if any :attr:`~.field_ids` combination is found. With a valid |
||||
|
XMLID in place, Odoo will understand that it must *update* the |
||||
|
record instead of *creating* a new one. |
||||
|
""" |
||||
|
newdata = list() |
||||
|
|
||||
|
# Data conversion to ORM format |
||||
|
import_fields = map(models.fix_import_export_id_paths, fields) |
||||
|
converted_data = self._convert_records( |
||||
|
self._extract_records(import_fields, data)) |
||||
|
|
||||
|
# Mock Odoo to believe the user is importing the ID field |
||||
|
if "id" not in fields: |
||||
|
fields.append("id") |
||||
|
import_fields.append(["id"]) |
||||
|
|
||||
|
# Needed to match with converted data field names |
||||
|
clean_fields = [f[0] for f in import_fields] |
||||
|
|
||||
|
for dbid, xmlid, record, info in converted_data: |
||||
|
row = dict(zip(clean_fields, data[info["record"]])) |
||||
|
match = self |
||||
|
|
||||
|
if xmlid: |
||||
|
# Skip rows with ID, they do not need all this |
||||
|
row["id"] = xmlid |
||||
|
elif dbid: |
||||
|
# Find the xmlid for this dbid |
||||
|
match = self.browse(dbid) |
||||
|
else: |
||||
|
# Store records that match a combination |
||||
|
match = self.env["base_import.match"]._match_find( |
||||
|
self, record, row) |
||||
|
|
||||
|
# Give a valid XMLID to this row if a match was found |
||||
|
row["id"] = (match._BaseModel__export_xml_id() |
||||
|
if match else row.get("id", u"")) |
||||
|
|
||||
|
# Store the modified row, in the same order as fields |
||||
|
newdata.append(tuple(row[f] for f in clean_fields)) |
||||
|
|
||||
|
# Leave the rest to Odoo itself |
||||
|
del data |
||||
|
return wrapper.origin(self, fields, newdata) |
||||
|
|
||||
|
# Flag to avoid confusions with other possible wrappers |
||||
|
wrapper.__base_import_match = True |
||||
|
|
||||
|
return wrapper |
||||
|
|
||||
|
@api.model |
||||
|
def _load_autopatch(self, model_name): |
||||
|
"""[Un]apply patch automatically.""" |
||||
|
self._load_unpatch(model_name) |
||||
|
if self.search([("model_name", "=", model_name)]): |
||||
|
self._load_patch(model_name) |
||||
|
|
||||
|
@api.model |
||||
|
def _load_patch(self, model_name): |
||||
|
"""Apply patch for :param:`model_name`'s load method. |
||||
|
|
||||
|
:param str model_name: |
||||
|
Model technical name, such as ``res.partner``. |
||||
|
""" |
||||
|
self.env[model_name]._patch_method( |
||||
|
"load", self._load_wrapper()) |
||||
|
|
||||
|
@api.model |
||||
|
def _load_unpatch(self, model_name): |
||||
|
"""Apply patch for :param:`model_name`'s load method. |
||||
|
|
||||
|
:param str model_name: |
||||
|
Model technical name, such as ``res.partner``. |
||||
|
""" |
||||
|
model = self.env[model_name] |
||||
|
|
||||
|
# Unapply patch only if there is one |
||||
|
try: |
||||
|
if model.load.__base_import_match: |
||||
|
model._revert_method("load") |
||||
|
except AttributeError: |
||||
|
pass |
||||
|
|
||||
|
@api.model |
||||
|
def _usable_for_load(self, model_name, fields): |
||||
|
"""Return a set of elements usable for calling ``load()``. |
||||
|
|
||||
|
:param str model_name: |
||||
|
Technical name of the model where you are loading data. |
||||
|
E.g. ``res.partner``. |
||||
|
|
||||
|
:param list(str|bool) fields: |
||||
|
List of field names being imported. |
||||
|
""" |
||||
|
result = self |
||||
|
available = self.search([("model_name", "=", model_name)]) |
||||
|
|
||||
|
# Use only criteria with all required fields to match |
||||
|
for record in available: |
||||
|
if all(f.name in fields for f in record.field_ids): |
||||
|
result += record |
||||
|
|
||||
|
return result |
||||
|
|
||||
|
|
||||
|
class BaseImportMatchField(models.Model): |
||||
|
_name = "base_import.match.field" |
||||
|
_description = "Field import match definition" |
||||
|
|
||||
|
name = fields.Char( |
||||
|
related="field_id.name") |
||||
|
field_id = fields.Many2one( |
||||
|
comodel_name="ir.model.fields", |
||||
|
string="Field", |
||||
|
required=True, |
||||
|
ondelete="cascade", |
||||
|
domain="[('model_id', '=', model_id)]", |
||||
|
help="Field that will be part of an unique key.") |
||||
|
match_id = fields.Many2one( |
||||
|
comodel_name="base_import.match", |
||||
|
string="Match", |
||||
|
ondelete="cascade", |
||||
|
required=True) |
||||
|
model_id = fields.Many2one( |
||||
|
related="match_id.model_id") |
||||
|
conditional = fields.Boolean( |
||||
|
help="Enable if you want to use this field only in some conditions.") |
||||
|
imported_value = fields.Char( |
||||
|
help="If the imported value is not this, the whole matching rule will " |
||||
|
"be discarded. Be careful, this data is always treated as a " |
||||
|
"string, and comparison is case-sensitive so if you set 'True', " |
||||
|
"it will NOT match '1' nor 'true', only EXACTLY 'True'.") |
||||
|
|
||||
|
@api.multi |
||||
|
@api.onchange("field_id", "match_id", "conditional", "imported_value") |
||||
|
def _onchange_match_id_name(self): |
||||
|
"""Update match name.""" |
||||
|
self.mapped("match_id")._compute_name() |
@ -0,0 +1,5 @@ |
|||||
|
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink |
||||
|
access_base_import_match,Access base_import.match,model_base_import_match,base.group_user,1,0,0,0 |
||||
|
access_base_import_match_field,Access base_import.match.field,model_base_import_match_field,base.group_user,1,0,0,0 |
||||
|
write_base_import_match,Write base_import.match,model_base_import_match,base.group_system,1,1,1,1 |
||||
|
write_base_import_match_field,Write base_import.match.field,model_base_import_match_field,base.group_system,1,1,1,1 |
After Width: 128 | Height: 128 | Size: 9.2 KiB |
@ -0,0 +1,6 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from . import test_import |
@ -0,0 +1,2 @@ |
|||||
|
email,name |
||||
|
michel.fletcher@agrolait.example.com,Michel Fletcher Changed |
@ -0,0 +1,2 @@ |
|||||
|
function,name |
||||
|
Function Changed,Michel Fletcher |
@ -0,0 +1,2 @@ |
|||||
|
name,is_company,parent_id/id,email |
||||
|
Michel Fletcher,False,base.res_partner_2,changed@agrolait.example.com |
@ -0,0 +1,2 @@ |
|||||
|
name,vat,is_company |
||||
|
Agrolait Changed,BE0477472701,True |
@ -0,0 +1,2 @@ |
|||||
|
login,name |
||||
|
demo,Demo User Changed |
@ -0,0 +1,69 @@ |
|||||
|
# -*- coding: utf-8 -*- |
||||
|
# Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
# Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
||||
|
|
||||
|
from os import path |
||||
|
from openerp.tests.common import TransactionCase |
||||
|
|
||||
|
|
||||
|
PATH = path.join(path.dirname(__file__), "import_data", "%s.csv") |
||||
|
OPTIONS = { |
||||
|
"headers": True, |
||||
|
"quoting": '"', |
||||
|
"separator": ",", |
||||
|
} |
||||
|
|
||||
|
|
||||
|
class ImportCase(TransactionCase): |
||||
|
def _base_import_record(self, res_model, file_name): |
||||
|
"""Create and return a ``base_import.import`` record.""" |
||||
|
with open(PATH % file_name) as demo_file: |
||||
|
return self.env["base_import.import"].create({ |
||||
|
"res_model": res_model, |
||||
|
"file": demo_file.read(), |
||||
|
"file_name": "%s.csv" % file_name, |
||||
|
"file_type": "csv", |
||||
|
}) |
||||
|
|
||||
|
def test_res_partner_vat(self): |
||||
|
"""Change name based on VAT.""" |
||||
|
agrolait = self.env.ref("base.res_partner_2") |
||||
|
agrolait.vat = "BE0477472701" |
||||
|
record = self._base_import_record("res.partner", "res_partner_vat") |
||||
|
record.do(["name", "vat", "is_company"], OPTIONS) |
||||
|
agrolait.env.invalidate_all() |
||||
|
self.assertEqual(agrolait.name, "Agrolait Changed") |
||||
|
|
||||
|
def test_res_partner_parent_name_is_company(self): |
||||
|
"""Change email based on parent_id, name and is_company.""" |
||||
|
record = self._base_import_record( |
||||
|
"res.partner", "res_partner_parent_name_is_company") |
||||
|
record.do(["name", "is_company", "parent_id/id", "email"], OPTIONS) |
||||
|
self.assertEqual( |
||||
|
self.env.ref("base.res_partner_address_4").email, |
||||
|
"changed@agrolait.example.com") |
||||
|
|
||||
|
def test_res_partner_email(self): |
||||
|
"""Change name based on email.""" |
||||
|
record = self._base_import_record("res.partner", "res_partner_email") |
||||
|
record.do(["email", "name"], OPTIONS) |
||||
|
self.assertEqual( |
||||
|
self.env.ref("base.res_partner_address_4").name, |
||||
|
"Michel Fletcher Changed") |
||||
|
|
||||
|
def test_res_partner_name(self): |
||||
|
"""Change function based on name.""" |
||||
|
record = self._base_import_record("res.partner", "res_partner_name") |
||||
|
record.do(["function", "name"], OPTIONS) |
||||
|
self.assertEqual( |
||||
|
self.env.ref("base.res_partner_address_4").function, |
||||
|
"Function Changed") |
||||
|
|
||||
|
def test_res_users_login(self): |
||||
|
"""Change name based on login.""" |
||||
|
record = self._base_import_record("res.users", "res_users_login") |
||||
|
record.do(["login", "name"], OPTIONS) |
||||
|
self.assertEqual( |
||||
|
self.env.ref("base.user_demo").name, |
||||
|
"Demo User Changed") |
@ -0,0 +1,81 @@ |
|||||
|
<?xml version="1.0" encoding="utf-8"?> |
||||
|
<!-- Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis |
||||
|
Copyright 2016 Tecnativa - Vicent Cubells |
||||
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). --> |
||||
|
|
||||
|
<odoo> |
||||
|
|
||||
|
<record id="match_form_view" model="ir.ui.view"> |
||||
|
<field name="name">Import match form view</field> |
||||
|
<field name="model">base_import.match</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<form string="Import Match"> |
||||
|
<sheet> |
||||
|
<h1> |
||||
|
<field name="name"/> |
||||
|
</h1> |
||||
|
<group> |
||||
|
<field name="model_id"/> |
||||
|
<field name="field_ids"> |
||||
|
<tree editable="bottom"> |
||||
|
<field name="field_id" |
||||
|
options="{'no_create': True}"/> |
||||
|
<field name="match_id" |
||||
|
invisible="True" |
||||
|
required="False"/> |
||||
|
<field name="model_id" invisible="True"/> |
||||
|
<field name="conditional"/> |
||||
|
<field |
||||
|
name="imported_value" |
||||
|
attrs="{ |
||||
|
'readonly': [ |
||||
|
('conditional', '=', False), |
||||
|
], |
||||
|
}"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
<field name="sequence"/> |
||||
|
</group> |
||||
|
</sheet> |
||||
|
</form> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="match_tree_view" model="ir.ui.view"> |
||||
|
<field name="name">Import match tree view</field> |
||||
|
<field name="model">base_import.match</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<tree string="Import Match"> |
||||
|
<field name="name"/> |
||||
|
<field name="sequence" invisible="True"/> |
||||
|
</tree> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<record id="match_search_view" model="ir.ui.view"> |
||||
|
<field name="name">Import match search view</field> |
||||
|
<field name="model">base_import.match</field> |
||||
|
<field name="arch" type="xml"> |
||||
|
<search string="Import Match"> |
||||
|
<field name="name"/> |
||||
|
<field name="model_id"/> |
||||
|
<field name="field_ids"/> |
||||
|
<separator/> |
||||
|
<group expand="0" string="Group By"> |
||||
|
<filter string="Model" context="{'group_by': 'model_id'}"/> |
||||
|
</group> |
||||
|
</search> |
||||
|
</field> |
||||
|
</record> |
||||
|
|
||||
|
<act_window |
||||
|
name="Import Match" |
||||
|
res_model="base_import.match" |
||||
|
id="match_action"/> |
||||
|
|
||||
|
<menuitem |
||||
|
id="match_menu" |
||||
|
action="match_action" |
||||
|
parent="base.next_id_9"/> |
||||
|
|
||||
|
</odoo> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue