From 5dd8c06855154555aa2b18c2706a795532168ac9 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Fri, 18 Mar 2016 14:00:42 +0100 Subject: [PATCH 01/10] base_import_match: Import deduplicator. By default, when importing data (like CSV import) with the ``base_import`` module, Odoo follows this rule: 1. If you import the XMLID of a record, make an **update**. 2. 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: 1. If you import the XMLID of a record, make an **update**. 2. If you do not: 1. If there are import match rules for the model you are importing: 1. Discard the rules that require fields you are not importing. 2. Traverse the remaining rules one by one in order to find a match in the database. 1. If one match is found: 1. Stop traversing the rest of valid rules. 2. **Update** that record. 2. If zero or multiple matches are found: 1. Continue with the next rule. 3. If all rules are exhausted and no single match is found: 1. **Create** a new record. 2. If there are no match rules for your model: 1. **Create** a new record. --- base_import_match/README.rst | 109 +++++++++ base_import_match/__init__.py | 5 + base_import_match/__openerp__.py | 24 ++ base_import_match/demo/base_import_match.yml | 37 +++ base_import_match/i18n/es.po | 83 +++++++ base_import_match/models/__init__.py | 5 + base_import_match/models/base_import.py | 220 ++++++++++++++++++ base_import_match/static/description/icon.png | Bin 0 -> 9455 bytes base_import_match/tests/__init__.py | 5 + .../tests/import_data/res_partner_email.csv | 2 + .../tests/import_data/res_partner_name.csv | 2 + .../res_partner_parent_name_is_company.csv | 2 + .../tests/import_data/res_partner_vat.csv | 2 + .../tests/import_data/res_users_login.csv | 2 + base_import_match/tests/test_import.py | 68 ++++++ .../views/base_import_match_view.xml | 70 ++++++ 16 files changed, 636 insertions(+) create mode 100644 base_import_match/README.rst create mode 100644 base_import_match/__init__.py create mode 100644 base_import_match/__openerp__.py create mode 100644 base_import_match/demo/base_import_match.yml create mode 100644 base_import_match/i18n/es.po create mode 100644 base_import_match/models/__init__.py create mode 100644 base_import_match/models/base_import.py create mode 100644 base_import_match/static/description/icon.png create mode 100644 base_import_match/tests/__init__.py create mode 100644 base_import_match/tests/import_data/res_partner_email.csv create mode 100644 base_import_match/tests/import_data/res_partner_name.csv create mode 100644 base_import_match/tests/import_data/res_partner_parent_name_is_company.csv create mode 100644 base_import_match/tests/import_data/res_partner_vat.csv create mode 100644 base_import_match/tests/import_data/res_users_login.csv create mode 100644 base_import_match/tests/test_import.py create mode 100644 base_import_match/views/base_import_match_view.xml diff --git a/base_import_match/README.rst b/base_import_match/README.rst new file mode 100644 index 00000000..6066502a --- /dev/null +++ b/base_import_match/README.rst @@ -0,0 +1,109 @@ +.. 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. + #. 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. + +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. +#. *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/8.0 + +Roadmap / Known Issues +====================== + +* Add a filter to let you apply some rules only to incoming imports that match + a given criteria (like a domain, but for import data). +* Matching by VAT for ``res.partner`` records will only work when the partner + has no contacts, because otherwise Odoo reflects the parent company's VAT in + the contact, and that results in multiple matches. Fixing the above point + should make this work. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub 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 + +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. diff --git a/base_import_match/__init__.py b/base_import_match/__init__.py new file mode 100644 index 00000000..09356048 --- /dev/null +++ b/base_import_match/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import models diff --git a/base_import_match/__openerp__.py b/base_import_match/__openerp__.py new file mode 100644 index 00000000..4f488895 --- /dev/null +++ b/base_import_match/__openerp__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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": "8.0.1.0.0", + "category": "Tools", + "website": "https://grupoesoc.es", + "author": "Grupo ESOC Ingeniería de Servicios, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, + "depends": [ + "base_import", + ], + "data": [ + "views/base_import_match_view.xml", + ], + "demo": [ + "demo/base_import_match.yml", + ], +} diff --git a/base_import_match/demo/base_import_match.yml b/base_import_match/demo/base_import_match.yml new file mode 100644 index 00000000..2d6e14be --- /dev/null +++ b/base_import_match/demo/base_import_match.yml @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +- !context {noupdate: True} + +- !record {id: res_partner_vat, model: base_import.match}: + model_id: base.model_res_partner + sequence: 10 + field_ids: + - base.field_res_partner_vat + +- !record {id: res_partner_parent_name_is_company, model: base_import.match}: + model_id: base.model_res_partner + sequence: 20 + field_ids: + - base.field_res_partner_name + - base.field_res_partner_parent_id + - base.field_res_partner_is_company + +- !record {id: res_partner_email, model: base_import.match}: + model_id: base.model_res_partner + sequence: 30 + field_ids: + - base.field_res_partner_email + +- !record {id: res_partner_name, model: base_import.match}: + model_id: base.model_res_partner + sequence: 40 + field_ids: + - base.field_res_partner_name + +- !record {id: res_users_login, model: base_import.match}: + model_id: base.model_res_users + sequence: 50 + field_ids: + - base.field_res_users_login diff --git a/base_import_match/i18n/es.po b/base_import_match/i18n/es.po new file mode 100644 index 00000000..6f7fbc6c --- /dev/null +++ b/base_import_match/i18n/es.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-05-11 12:24+0200\n" +"PO-Revision-Date: 2016-05-11 12:26+0200\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 1.8.7.1\n" +"Last-Translator: Jairo Llopis \n" +"Language: es_ES\n" + +#. 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 +msgid "Display Name" +msgstr "Nombre a mostrar" + +#. module: base_import_match +#: sql_constraint:base_import.match:0 +msgid "Duplicated match!" +msgstr "¡Coincidencia duplicada!" + +#. 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 +#: 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 +#: help:base_import.match,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 +msgid "Last Modified on" +msgstr "Última actualización por" + +#. 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 +msgid "Model" +msgstr "Modelo" + +#. module: base_import_match +#: field:base_import.match,name:0 +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: field:base_import.match,sequence:0 +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/models/__init__.py b/base_import_match/models/__init__.py new file mode 100644 index 00000000..ec83d2a4 --- /dev/null +++ b/base_import_match/models/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import base_import diff --git a/base_import_match/models/base_import.py b/base_import_match/models/base_import.py new file mode 100644 index 00000000..eb97e5ed --- /dev/null +++ b/base_import_match/models/base_import.py @@ -0,0 +1,220 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from openerp import api, fields, models +from openerp.exceptions import except_orm as ValueError # TODO remove in v9 +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" + _sql_constraints = [ + ("name_unique", "UNIQUE(name)", "Duplicated match!"), + ] + + 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=[("osv_memory", "=", 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.Many2many( + "ir.model.fields", + string="Fields", + required=True, + domain="[('model_id', '=', model_id)]", + help="Fields that will define an unique key.") + + @api.multi + @api.onchange("model_id") + def _onchange_model_id(self): + self.field_ids = False + + @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 = "{}: {}".format( + s.model_id.display_name, + " + ".join(s.field_ids.mapped("display_name"))) + + @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() + + # Mock Odoo to believe the user is importing the ID field + if "id" not in fields: + fields.append("id") + + # Needed to work with relational fields + clean_fields = [ + models.fix_import_export_id_paths(f)[0] for f in fields] + + # Get usable rules to perform matches + usable = self.env["base_import.match"]._usable_for_load( + self._name, clean_fields) + + for row in (dict(zip(clean_fields, r)) for r in data): + # All rows need an ID + if "id" not in row: + row["id"] = u"" + + # Skip rows with ID, they do not need all this + elif row["id"]: + continue + + # Store records that match a combination + match = self + for combination in usable: + match |= self.search( + [(field.name, "=", row[field.name]) + for field in combination.field_ids]) + + # When a single match is found, stop searching + if len(match) != 1: + break + + # Only one record should have been found + try: + match.ensure_one() + + # You hit this because... + # a. No match. Odoo must create a new record. + # b. Multiple matches. No way to know which is the right + # one, so we let Odoo create a new record or raise + # the corresponding exception. + # In any case, we must do nothing. + except ValueError: + continue + + # Give a valid XMLID to this row + row["id"] = match._BaseModel__export_xml_id() + + # 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 diff --git a/base_import_match/static/description/icon.png b/base_import_match/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 zcmW++2RxMjAAjx~&dlBk9S+%}OXg)AGE&Cb*&}d0jUxM@u(PQx^-s)697TX`ehR4?GS^qbkof1cslKgkU)h65qZ9Oc=ml_0temigYLJfnz{IDzUf>bGs4N!v3=Z3jMq&A#7%rM5eQ#dc?k~! zVpnB`o+K7|Al`Q_U;eD$B zfJtP*jH`siUq~{KE)`jP2|#TUEFGRryE2`i0**z#*^6~AI|YzIWy$Cu#CSLW3q=GA z6`?GZymC;dCPk~rBS%eCb`5OLr;RUZ;D`}um=H)BfVIq%7VhiMr)_#G0N#zrNH|__ zc+blN2UAB0=617@>_u;MPHN;P;N#YoE=)R#i$k_`UAA>WWCcEVMh~L_ zj--gtp&|K1#58Yz*AHCTMziU1Jzt_jG0I@qAOHsk$2}yTmVkBp_eHuY$A9)>P6o~I z%aQ?!(GqeQ-Y+b0I(m9pwgi(IIZZzsbMv+9w{PFtd_<_(LA~0H(xz{=FhLB@(1&qHA5EJw1>>=%q2f&^X>IQ{!GJ4e9U z&KlB)z(84HmNgm2hg2C0>WM{E(DdPr+EeU_N@57;PC2&DmGFW_9kP&%?X4}+xWi)( z;)z%wI5>D4a*5XwD)P--sPkoY(a~WBw;E~AW`Yue4kFa^LM3X`8x|}ZUeMnqr}>kH zG%WWW>3ml$Yez?i%)2pbKPI7?5o?hydokgQyZsNEr{a|mLdt;X2TX(#B1j35xPnPW z*bMSSOauW>o;*=kO8ojw91VX!qoOQb)zHJ!odWB}d+*K?#sY_jqPdg{Sm2HdYzdEx zOGVPhVRTGPtv0o}RfVP;Nd(|CB)I;*t&QO8h zFfekr30S!-LHmV_Su-W+rEwYXJ^;6&3|L$mMC8*bQptyOo9;>Qb9Q9`ySe3%V$A*9 zeKEe+b0{#KWGp$F+tga)0RtI)nhMa-K@JS}2krK~n8vJ=Ngm?R!9G<~RyuU0d?nz# z-5EK$o(!F?hmX*2Yt6+coY`6jGbb7tF#6nHA zuKk=GGJ;ZwON1iAfG$E#Y7MnZVmrY|j0eVI(DN_MNFJmyZ|;w4tf@=CCDZ#5N_0K= z$;R~bbk?}TpfDjfB&aiQ$VA}s?P}xPERJG{kxk5~R`iRS(SK5d+Xs9swCozZISbnS zk!)I0>t=A<-^z(cmSFz3=jZ23u13X><0b)P)^1T_))Kr`e!-pb#q&J*Q`p+B6la%C zuVl&0duN<;uOsB3%T9Fp8t{ED108<+W(nOZd?gDnfNBC3>M8WE61$So|P zVvqH0SNtDTcsUdzaMDpT=Ty0pDHHNL@Z0w$Y`XO z2M-_r1S+GaH%pz#Uy0*w$Vdl=X=rQXEzO}d6J^R6zjM1u&c9vYLvLp?W7w(?np9x1 zE_0JSAJCPB%i7p*Wvg)pn5T`8k3-uR?*NT|J`eS#_#54p>!p(mLDvmc-3o0mX*mp_ zN*AeS<>#^-{S%W<*mz^!X$w_2dHWpcJ6^j64qFBft-o}o_Vx80o0>}Du;>kLts;$8 zC`7q$QI(dKYG`Wa8#wl@V4jVWBRGQ@1dr-hstpQL)Tl+aqVpGpbSfN>5i&QMXfiZ> zaA?T1VGe?rpQ@;+pkrVdd{klI&jVS@I5_iz!=UMpTsa~mBga?1r}aRBm1WS;TT*s0f0lY=JBl66Upy)-k4J}lh=P^8(SXk~0xW=T9v*B|gzIhN z>qsO7dFd~mgxAy4V?&)=5ieYq?zi?ZEoj)&2o)RLy=@hbCRcfT5jigwtQGE{L*8<@Yd{zg;CsL5mvzfDY}P-wos_6PfprFVaeqNE%h zKZhLtcQld;ZD+>=nqN~>GvROfueSzJD&BE*}XfU|H&(FssBqY=hPCt`d zH?@s2>I(|;fcW&YM6#V#!kUIP8$Nkdh0A(bEVj``-AAyYgwY~jB zT|I7Bf@%;7aL7Wf4dZ%VqF$eiaC38OV6oy3Z#TER2G+fOCd9Iaoy6aLYbPTN{XRPz z;U!V|vBf%H!}52L2gH_+j;`bTcQRXB+y9onc^wLm5wi3-Be}U>k_u>2Eg$=k!(l@I zcCg+flakT2Nej3i0yn+g+}%NYb?ta;R?(g5SnwsQ49U8Wng8d|{B+lyRcEDvR3+`O{zfmrmvFrL6acVP%yG98X zo&+VBg@px@i)%o?dG(`T;n*$S5*rnyiR#=wW}}GsAcfyQpE|>a{=$Hjg=-*_K;UtD z#z-)AXwSRY?OPefw^iI+ z)AXz#PfEjlwTes|_{sB?4(O@fg0AJ^g8gP}ex9Ucf*@_^J(s_5jJV}c)s$`Myn|Kd z$6>}#q^n{4vN@+Os$m7KV+`}c%4)4pv@06af4-x5#wj!KKb%caK{A&Y#Rfs z-po?Dcb1({W=6FKIUirH&(yg=*6aLCekcKwyfK^JN5{wcA3nhO(o}SK#!CINhI`-I z1)6&n7O&ZmyFMuNwvEic#IiOAwNkR=u5it{B9n2sAJV5pNhar=j5`*N!Na;c7g!l$ z3aYBqUkqqTJ=Re-;)s!EOeij=7SQZ3Hq}ZRds%IM*PtM$wV z@;rlc*NRK7i3y5BETSKuumEN`Xu_8GP1Ri=OKQ$@I^ko8>H6)4rjiG5{VBM>B|%`&&s^)jS|-_95&yc=GqjNo{zFkw%%HHhS~e=s zD#sfS+-?*t|J!+ozP6KvtOl!R)@@-z24}`9{QaVLD^9VCSR2b`b!KC#o;Ki<+wXB6 zx3&O0LOWcg4&rv4QG0)4yb}7BFSEg~=IR5#ZRj8kg}dS7_V&^%#Do==#`u zpy6{ox?jWuR(;pg+f@mT>#HGWHAJRRDDDv~@(IDw&R>9643kK#HN`!1vBJHnC+RM&yIh8{gG2q zA%e*U3|N0XSRa~oX-3EAneep)@{h2vvd3Xvy$7og(sayr@95+e6~Xvi1tUqnIxoIH zVWo*OwYElb#uyW{Imam6f2rGbjR!Y3`#gPqkv57dB6K^wRGxc9B(t|aYDGS=m$&S!NmCtrMMaUg(c zc2qC=2Z`EEFMW-me5B)24AqF*bV5Dr-M5ig(l-WPS%CgaPzs6p_gnCIvTJ=Y<6!gT zVt@AfYCzjjsMEGi=rDQHo0yc;HqoRNnNFeWZgcm?f;cp(6CNylj36DoL(?TS7eU#+ z7&mfr#y))+CJOXQKUMZ7QIdS9@#-}7y2K1{8)cCt0~-X0O!O?Qx#E4Og+;A2SjalQ zs7r?qn0H044=sDN$SRG$arw~n=+T_DNdSrarmu)V6@|?1-ZB#hRn`uilTGPJ@fqEy zGt(f0B+^JDP&f=r{#Y_wi#AVDf-y!RIXU^0jXsFpf>=Ji*TeqSY!H~AMbJdCGLhC) zn7Rx+sXw6uYj;WRYrLd^5IZq@6JI1C^YkgnedZEYy<&4(z%Q$5yv#Boo{AH8n$a zhb4Y3PWdr269&?V%uI$xMcUrMzl=;w<_nm*qr=c3Rl@i5wWB;e-`t7D&c-mcQl7x! zZWB`UGcw=Y2=}~wzrfLx=uet<;m3~=8I~ZRuzvMQUQdr+yTV|ATf1Uuomr__nDf=X zZ3WYJtHp_ri(}SQAPjv+Y+0=fH4krOP@S&=zZ-t1jW1o@}z;xk8 z(Nz1co&El^HK^NrhVHa-_;&88vTU>_J33=%{if;BEY*J#1n59=07jrGQ#IP>@u#3A z;!q+E1Rj3ZJ+!4bq9F8PXJ@yMgZL;>&gYA0%_Kbi8?S=XGM~dnQZQ!yBSgcZhY96H zrWnU;k)qy`rX&&xlDyA%(a1Hhi5CWkmg(`Gb%m(HKi-7Z!LKGRP_B8@`7&hdDy5n= z`OIxqxiVfX@OX1p(mQu>0Ai*v_cTMiw4qRt3~NBvr9oBy0)r>w3p~V0SCm=An6@3n)>@z!|o-$HvDK z|3D2ZMJkLE5loMKl6R^ez@Zz%S$&mbeoqH5`Bb){Ei21q&VP)hWS2tjShfFtGE+$z zzCR$P#uktu+#!w)cX!lWN1XU%K-r=s{|j?)Akf@q#3b#{6cZCuJ~gCxuMXRmI$nGtnH+-h z+GEi!*X=AP<|fG`1>MBdTb?28JYc=fGvAi2I<$B(rs$;eoJCyR6_bc~p!XR@O-+sD z=eH`-ye})I5ic1eL~TDmtfJ|8`0VJ*Yr=hNCd)G1p2MMz4C3^Mj?7;!w|Ly%JqmuW zlIEW^Ft%z?*|fpXda>Jr^1noFZEwFgVV%|*XhH@acv8rdGxeEX{M$(vG{Zw+x(ei@ zmfXb22}8-?Fi`vo-YVrTH*C?a8%M=Hv9MqVH7H^J$KsD?>!SFZ;ZsvnHr_gn=7acz z#W?0eCdVhVMWN12VV^$>WlQ?f;P^{(&pYTops|btm6aj>_Uz+hqpGwB)vWp0Cf5y< zft8-je~nn?W11plq}N)4A{l8I7$!ks_x$PXW-2XaRFswX_BnF{R#6YIwMhAgd5F9X zGmwdadS6(a^fjHtXg8=l?Rc0Sm%hk6E9!5cLVloEy4eh(=FwgP`)~I^5~pBEWo+F6 zSf2ncyMurJN91#cJTy_u8Y}@%!bq1RkGC~-bV@SXRd4F{R-*V`bS+6;W5vZ(&+I<9$;-V|eNfLa5n-6% z2(}&uGRF;p92eS*sE*oR$@pexaqr*meB)VhmIg@h{uzkk$9~qh#cHhw#>O%)b@+(| z^IQgqzuj~Sk(J;swEM-3TrJAPCq9k^^^`q{IItKBRXYe}e0Tdr=Huf7da3$l4PdpwWDop%^}n;dD#K4s#DYA8SHZ z&1!riV4W4R7R#C))JH1~axJ)RYnM$$lIR%6fIVA@zV{XVyx}C+a-Dt8Y9M)^KU0+H zR4IUb2CJ{Hg>CuaXtD50jB(_Tcx=Z$^WYu2u5kubqmwp%drJ6 z?Fo40g!Qd<-l=TQxqHEOuPX0;^z7iX?Ke^a%XT<13TA^5`4Xcw6D@Ur&VT&CUe0d} z1GjOVF1^L@>O)l@?bD~$wzgf(nxX1OGD8fEV?TdJcZc2KoUe|oP1#=$$7ee|xbY)A zDZq+cuTpc(fFdj^=!;{k03C69lMQ(|>uhRfRu%+!k&YOi-3|1QKB z z?n?eq1XP>p-IM$Z^C;2L3itnbJZAip*Zo0aw2bs8@(s^~*8T9go!%dHcAz2lM;`yp zD=7&xjFV$S&5uDaiScyD?B-i1ze`+CoRtz`Wn+Zl&#s4&}MO{@N!ufrzjG$B79)Y2d3tBk&)TxUTw@QS0TEL_?njX|@vq?Uz(nBFK5Pq7*xj#u*R&i|?7+6# z+|r_n#SW&LXhtheZdah{ZVoqwyT{D>MC3nkFF#N)xLi{p7J1jXlmVeb;cP5?e(=f# zuT7fvjSbjS781v?7{)-X3*?>tq?)Yd)~|1{BDS(pqC zC}~H#WXlkUW*H5CDOo<)#x7%RY)A;ShGhI5s*#cRDA8YgqG(HeKDx+#(ZQ?386dv! zlXCO)w91~Vw4AmOcATuV653fa9R$fyK8ul%rG z-wfS zihugoZyr38Im?Zuh6@RcF~t1anQu7>#lPpb#}4cOA!EM11`%f*07RqOVkmX{p~KJ9 z^zP;K#|)$`^Rb{rnHGH{~>1(fawV0*Z#)}M`m8-?ZJV<+e}s9wE# z)l&az?w^5{)`S(%MRzxdNqrs1n*-=jS^_jqE*5XDrA0+VE`5^*p3CuM<&dZEeCjoz zR;uu_H9ZPZV|fQq`Cyw4nscrVwi!fE6ciMmX$!_hN7uF;jjKG)d2@aC4ropY)8etW=xJvni)8eHi`H$%#zn^WJ5NLc-rqk|u&&4Z6fD_m&JfSI1Bvb?b<*n&sfl0^t z=HnmRl`XrFvMKB%9}>PaA`m-fK6a0(8=qPkWS5bb4=v?XcWi&hRY?O5HdulRi4?fN zlsJ*N-0Qw+Yic@s0(2uy%F@ib;GjXt01Fmx5XbRo6+n|pP(&nodMoap^z{~q ziEeaUT@Mxe3vJSfI6?uLND(CNr=#^W<1b}jzW58bIfyWTDle$mmS(|x-0|2UlX+9k zQ^EX7Nw}?EzVoBfT(-LT|=9N@^hcn-_p&sqG z&*oVs2JSU+N4ZD`FhCAWaS;>|wH2G*Id|?pa#@>tyxX`+4HyIArWDvVrX)2WAOQff z0qyHu&-S@i^MS-+j--!pr4fPBj~_8({~e1bfcl0wI1kaoN>mJL6KUPQm5N7lB(ui1 zE-o%kq)&djzWJ}ob<-GfDlkB;F31j-VHKvQUGQ3sp`CwyGJk_i!y^sD0fqC@$9|jO zOqN!r!8-p==F@ZVP=U$qSpY(gQ0)59P1&t@y?5rvg<}E+GB}26NYPp4f2YFQrQtot5mn3wu_qprZ=>Ig-$ zbW26Ws~IgY>}^5w`vTB(G`PTZaDiGBo5o(tp)qli|NeV( z@H_=R8V39rt5J5YB2Ky?4eJJ#b`_iBe2ot~6%7mLt5t8Vwi^Jy7|jWXqa3amOIoRb zOr}WVFP--DsS`1WpN%~)t3R!arKF^Q$e12KEqU36AWwnCBICpH4XCsfnyrHr>$I$4 z!DpKX$OKLWarN7nv@!uIA+~RNO)l$$w}p(;b>mx8pwYvu;dD_unryX_NhT8*Tj>BTrTTL&!?O+%Rv;b?B??gSzdp?6Uug9{ zd@V08Z$BdI?fpoCS$)t4mg4rT8Q_I}h`0d-vYZ^|dOB*Q^S|xqTV*vIg?@fVFSmMpaw0qtTRbx} z({Pg?#{2`sc9)M5N$*N|4;^t$+QP?#mov zGVC@I*lBVrOU-%2y!7%)fAKjpEFsgQc4{amtiHb95KQEwvf<(3T<9-Zm$xIew#P22 zc2Ix|App^>v6(3L_MCU0d3W##AB0M~3D00EWoKZqsJYT(#@w$Y_H7G22M~ApVFTRHMI_3be)Lkn#0F*V8Pq zc}`Cjy$bE;FJ6H7p=0y#R>`}-m4(0F>%@P|?7fx{=R^uFdISRnZ2W_xQhD{YuR3t< z{6yxu=4~JkeA;|(J6_nv#>Nvs&FuLA&PW^he@t(UwFFE8)|a!R{`E`K`i^ZnyE4$k z;(749Ix|oi$c3QbEJ3b~D_kQsPz~fIUKym($a_7dJ?o+40*OLl^{=&oq$<#Q(yyrp z{J-FAniyAw9tPbe&IhQ|a`DqFTVQGQ&Gq3!C2==4x{6EJwiPZ8zub-iXoUtkJiG{} zPaR&}_fn8_z~(=;5lD-aPWD3z8PZS@AaUiomF!G8I}Mf>e~0g#BelA-5#`cj;O5>N Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/base_import_match/tests/__init__.py b/base_import_match/tests/__init__.py new file mode 100644 index 00000000..ce1b8ba3 --- /dev/null +++ b/base_import_match/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import test_import diff --git a/base_import_match/tests/import_data/res_partner_email.csv b/base_import_match/tests/import_data/res_partner_email.csv new file mode 100644 index 00000000..983b9113 --- /dev/null +++ b/base_import_match/tests/import_data/res_partner_email.csv @@ -0,0 +1,2 @@ +email,name +michel.fletcher@agrolait.example.com,Michel Fletcher Changed diff --git a/base_import_match/tests/import_data/res_partner_name.csv b/base_import_match/tests/import_data/res_partner_name.csv new file mode 100644 index 00000000..c1a10959 --- /dev/null +++ b/base_import_match/tests/import_data/res_partner_name.csv @@ -0,0 +1,2 @@ +function,name +Function Changed,Michel Fletcher diff --git a/base_import_match/tests/import_data/res_partner_parent_name_is_company.csv b/base_import_match/tests/import_data/res_partner_parent_name_is_company.csv new file mode 100644 index 00000000..2d433d94 --- /dev/null +++ b/base_import_match/tests/import_data/res_partner_parent_name_is_company.csv @@ -0,0 +1,2 @@ +name,is_company,parent_id/id,email +Michel Fletcher,False,base.res_partner_2,changed@agrolait.example.com diff --git a/base_import_match/tests/import_data/res_partner_vat.csv b/base_import_match/tests/import_data/res_partner_vat.csv new file mode 100644 index 00000000..bbdaa3e5 --- /dev/null +++ b/base_import_match/tests/import_data/res_partner_vat.csv @@ -0,0 +1,2 @@ +name,vat +Federal Changed,BE0477472701 diff --git a/base_import_match/tests/import_data/res_users_login.csv b/base_import_match/tests/import_data/res_users_login.csv new file mode 100644 index 00000000..e91cccad --- /dev/null +++ b/base_import_match/tests/import_data/res_users_login.csv @@ -0,0 +1,2 @@ +login,name +demo,Demo User Changed diff --git a/base_import_match/tests/test_import.py b/base_import_match/tests/test_import.py new file mode 100644 index 00000000..9f65ebe5 --- /dev/null +++ b/base_import_match/tests/test_import.py @@ -0,0 +1,68 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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.""" + federal = self.env.ref("base.res_partner_26") + federal.vat = "BE0477472701" + record = self._base_import_record("res.partner", "res_partner_vat") + record.do(["name", "vat"], OPTIONS) + federal.env.invalidate_all() + self.assertEqual(federal.name, "Federal 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") diff --git a/base_import_match/views/base_import_match_view.xml b/base_import_match/views/base_import_match_view.xml new file mode 100644 index 00000000..7eeb26e5 --- /dev/null +++ b/base_import_match/views/base_import_match_view.xml @@ -0,0 +1,70 @@ + + + + + + + + Import match form view + base_import.match + +
+ +

+ +

+ + + + + +
+
+
+
+ + + Import match tree view + base_import.match + + + + + + + + + + Import match search view + base_import.match + + + + + + + + + + + + + + + + + +
+
From ac331434ef69f9f610a062a4395a1d043ca45732 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Thu, 12 May 2016 11:34:09 +0200 Subject: [PATCH 02/10] base_import_match: Add conditionals to fields when importing. This patch allows to import res.partner records by VAT when is_company==True by default. --- base_import_match/README.rst | 60 +++--- base_import_match/__openerp__.py | 2 + base_import_match/data/base_import_match.yml | 29 +++ base_import_match/demo/base_import_match.yml | 41 +++-- base_import_match/models/base_import.py | 173 +++++++++++++----- .../security/ir.model.access.csv | 5 + .../tests/import_data/res_partner_vat.csv | 4 +- base_import_match/tests/test_import.py | 10 +- .../views/base_import_match_view.xml | 22 ++- 9 files changed, 242 insertions(+), 104 deletions(-) create mode 100644 base_import_match/data/base_import_match.yml create mode 100644 base_import_match/security/ir.model.access.csv diff --git a/base_import_match/README.rst b/base_import_match/README.rst index 6066502a..f1c65772 100644 --- a/base_import_match/README.rst +++ b/base_import_match/README.rst @@ -9,8 +9,8 @@ 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. +- 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. @@ -21,21 +21,31 @@ 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. - #. 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. +- 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 ============= @@ -46,6 +56,12 @@ To configure this module, you need to: #. *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. @@ -63,15 +79,11 @@ To use this module, you need to: :alt: Try me on Runbot :target: https://runbot.odoo-community.org/runbot/149/8.0 -Roadmap / Known Issues +Known Issues / Roadmap ====================== -* Add a filter to let you apply some rules only to incoming imports that match - a given criteria (like a domain, but for import data). -* Matching by VAT for ``res.partner`` records will only work when the partner - has no contacts, because otherwise Odoo reflects the parent company's VAT in - the contact, and that results in multiple matches. Fixing the above point - should make this work. +* Add a setting to throw an error when multiple matches are found, instead of + falling back to creation of new record. Bug Tracker =========== diff --git a/base_import_match/__openerp__.py b/base_import_match/__openerp__.py index 4f488895..83471d21 100644 --- a/base_import_match/__openerp__.py +++ b/base_import_match/__openerp__.py @@ -16,6 +16,8 @@ "base_import", ], "data": [ + "security/ir.model.access.csv", + "data/base_import_match.yml", "views/base_import_match_view.xml", ], "demo": [ diff --git a/base_import_match/data/base_import_match.yml b/base_import_match/data/base_import_match.yml new file mode 100644 index 00000000..5f49c911 --- /dev/null +++ b/base_import_match/data/base_import_match.yml @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +- !context {noupdate: True} + +# Match partners by VAT when is_company is True +- !record {id: res_partner_vat, model: base_import.match}: + model_id: base.model_res_partner + sequence: 10 + +- !record {id: res_partner_vat_vat, model: base_import.match.field}: + match_id: res_partner_vat + field_id: base.field_res_partner_vat + +- !record {id: res_partner_vat_is_company, model: base_import.match.field}: + match_id: res_partner_vat + field_id: base.field_res_partner_is_company + conditional: True + imported_value: "True" + +# Match users by login +- !record {id: res_users_login, model: base_import.match}: + model_id: base.model_res_users + sequence: 50 + +- !record {id: res_users_login_login, model: base_import.match.field}: + match_id: res_users_login + field_id: base.field_res_users_login diff --git a/base_import_match/demo/base_import_match.yml b/base_import_match/demo/base_import_match.yml index 2d6e14be..110e993e 100644 --- a/base_import_match/demo/base_import_match.yml +++ b/base_import_match/demo/base_import_match.yml @@ -4,34 +4,37 @@ - !context {noupdate: True} -- !record {id: res_partner_vat, model: base_import.match}: - model_id: base.model_res_partner - sequence: 10 - field_ids: - - base.field_res_partner_vat - +# Match partners by name, parent_id and is_company - !record {id: res_partner_parent_name_is_company, model: base_import.match}: model_id: base.model_res_partner sequence: 20 - field_ids: - - base.field_res_partner_name - - base.field_res_partner_parent_id - - base.field_res_partner_is_company +- !record {id: res_partner_parent_name_is_company_name, model: base_import.match.field}: + match_id: res_partner_parent_name_is_company + field_id: base.field_res_partner_name + +- !record {id: res_partner_parent_name_is_company_parent, model: base_import.match.field}: + match_id: res_partner_parent_name_is_company + field_id: base.field_res_partner_parent_id + +- !record {id: res_partner_parent_name_is_company_is_company, model: base_import.match.field}: + match_id: res_partner_parent_name_is_company + field_id: base.field_res_partner_is_company + +# Match partner by email - !record {id: res_partner_email, model: base_import.match}: model_id: base.model_res_partner sequence: 30 - field_ids: - - base.field_res_partner_email +- !record {id: res_partner_email_email, model: base_import.match.field}: + match_id: res_partner_email + field_id: base.field_res_partner_email + +# Match partner by name - !record {id: res_partner_name, model: base_import.match}: model_id: base.model_res_partner sequence: 40 - field_ids: - - base.field_res_partner_name -- !record {id: res_users_login, model: base_import.match}: - model_id: base.model_res_users - sequence: 50 - field_ids: - - base.field_res_users_login +- !record {id: res_partner_name_name, model: base_import.match.field}: + match_id: res_partner_name + field_id: base.field_res_partner_name diff --git a/base_import_match/models/base_import.py b/base_import_match/models/base_import.py index eb97e5ed..cf9bd95f 100644 --- a/base_import_match/models/base_import.py +++ b/base_import_match/models/base_import.py @@ -3,7 +3,6 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from openerp import api, fields, models -from openerp.exceptions import except_orm as ValueError # TODO remove in v9 from openerp import SUPERUSER_ID # TODO remove in v10 @@ -11,9 +10,6 @@ class BaseImportMatch(models.Model): _name = "base_import.match" _description = "Deduplicate settings prior to CSV imports." _order = "sequence, name" - _sql_constraints = [ - ("name_unique", "UNIQUE(name)", "Duplicated match!"), - ] name = fields.Char( compute="_compute_name", @@ -31,17 +27,17 @@ class BaseImportMatch(models.Model): related="model_id.model", store=True, index=True) - field_ids = fields.Many2many( - "ir.model.fields", + field_ids = fields.One2many( + comodel_name="base_import.match.field", + inverse_name="match_id", string="Fields", required=True, - domain="[('model_id', '=', model_id)]", help="Fields that will define an unique key.") @api.multi @api.onchange("model_id") def _onchange_model_id(self): - self.field_ids = False + self.field_ids.unlink() @api.model def create(self, vals): @@ -89,7 +85,70 @@ class BaseImportMatch(models.Model): for s in self: s.name = "{}: {}".format( s.model_id.display_name, - " + ".join(s.field_ids.mapped("display_name"))) + " + ".join( + s.field_ids.mapped( + lambda r: ( + str(r.field_id.name) + + (" ({})".format(r.imported_value) + if r.conditional else ""))))) + + @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): @@ -105,53 +164,37 @@ class BaseImportMatch(models.Model): """ 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 work with relational fields - clean_fields = [ - models.fix_import_export_id_paths(f)[0] for f in fields] + # Needed to match with converted data field names + clean_fields = [f[0] for f in import_fields] - # Get usable rules to perform matches - usable = self.env["base_import.match"]._usable_for_load( - self._name, clean_fields) - - for row in (dict(zip(clean_fields, r)) for r in data): - # All rows need an ID - if "id" not in row: - row["id"] = u"" - - # Skip rows with ID, they do not need all this - elif row["id"]: - continue - - # Store records that match a combination + for dbid, xmlid, record, info in converted_data: + row = dict(zip(clean_fields, data[info["record"]])) match = self - for combination in usable: - match |= self.search( - [(field.name, "=", row[field.name]) - for field in combination.field_ids]) - # When a single match is found, stop searching - if len(match) != 1: - break + 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) - # Only one record should have been found - try: - match.ensure_one() - - # You hit this because... - # a. No match. Odoo must create a new record. - # b. Multiple matches. No way to know which is the right - # one, so we let Odoo create a new record or raise - # the corresponding exception. - # In any case, we must do nothing. - except ValueError: - continue - - # Give a valid XMLID to this row - row["id"] = match._BaseModel__export_xml_id() + # 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)) @@ -218,3 +261,37 @@ class BaseImportMatch(models.Model): 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", + 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() diff --git a/base_import_match/security/ir.model.access.csv b/base_import_match/security/ir.model.access.csv new file mode 100644 index 00000000..6ffd9013 --- /dev/null +++ b/base_import_match/security/ir.model.access.csv @@ -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 diff --git a/base_import_match/tests/import_data/res_partner_vat.csv b/base_import_match/tests/import_data/res_partner_vat.csv index bbdaa3e5..acc3188c 100644 --- a/base_import_match/tests/import_data/res_partner_vat.csv +++ b/base_import_match/tests/import_data/res_partner_vat.csv @@ -1,2 +1,2 @@ -name,vat -Federal Changed,BE0477472701 +name,vat,is_company +Agrolait Changed,BE0477472701,True diff --git a/base_import_match/tests/test_import.py b/base_import_match/tests/test_import.py index 9f65ebe5..5c47663d 100644 --- a/base_import_match/tests/test_import.py +++ b/base_import_match/tests/test_import.py @@ -27,12 +27,12 @@ class ImportCase(TransactionCase): def test_res_partner_vat(self): """Change name based on VAT.""" - federal = self.env.ref("base.res_partner_26") - federal.vat = "BE0477472701" + 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"], OPTIONS) - federal.env.invalidate_all() - self.assertEqual(federal.name, "Federal Changed") + 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.""" diff --git a/base_import_match/views/base_import_match_view.xml b/base_import_match/views/base_import_match_view.xml index 7eeb26e5..06e62d49 100644 --- a/base_import_match/views/base_import_match_view.xml +++ b/base_import_match/views/base_import_match_view.xml @@ -16,12 +16,22 @@ - + + + + + + + + + From a751e7f05ddedd30a49d5c7f8cc2ce7642898e09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20L=C3=B3pez?= Date: Thu, 26 May 2016 13:30:37 -0500 Subject: [PATCH 03/10] base_import_match: Small rst fixes in readme file --- base_import_match/README.rst | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/base_import_match/README.rst b/base_import_match/README.rst index f1c65772..52609b45 100644 --- a/base_import_match/README.rst +++ b/base_import_match/README.rst @@ -23,20 +23,26 @@ 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. + + - 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: @@ -59,6 +65,7 @@ To configure this module, you need to: #. 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``. From 4f5346bae42b0f8738b88434b04c306888ea7cf4 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Tue, 20 Sep 2016 13:41:56 +0200 Subject: [PATCH 04/10] Avoid UnicodeEncodeError. (#544) * Fix wrong README format. * [FIX][base_import_match] Avoid UnicodeEncodeError. When the model or field you chose was translated and had some non-ascii character, you got an error like this: `UnicodeEncodeError: 'ascii' codec can't encode character u'\xed' in position 15: ordinal not in range(128)`. Now, using unicode strings, that won't happen again. * Do not require a hidden field. * Further unicode protection, add ondelete clause. --- base_import_match/README.rst | 18 +++++++++--------- base_import_match/__openerp__.py | 2 +- base_import_match/models/base_import.py | 10 +++++----- .../views/base_import_match_view.xml | 4 +++- 4 files changed, 18 insertions(+), 16 deletions(-) diff --git a/base_import_match/README.rst b/base_import_match/README.rst index 52609b45..6dc1a429 100644 --- a/base_import_match/README.rst +++ b/base_import_match/README.rst @@ -29,18 +29,18 @@ After installing this module, the import logic will be changed to: - 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: + - 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: + - 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: + - Continue with the next rule. + - If all rules are exhausted and no single match is found: - - **Create** a new record. + - **Create** a new record. - If there are no match rules for your model: - **Create** a new record. diff --git a/base_import_match/__openerp__.py b/base_import_match/__openerp__.py index 83471d21..d8eb62da 100644 --- a/base_import_match/__openerp__.py +++ b/base_import_match/__openerp__.py @@ -4,7 +4,7 @@ { "name": "Base Import Match", "summary": "Try to avoid duplicates before importing", - "version": "8.0.1.0.0", + "version": "8.0.1.0.1", "category": "Tools", "website": "https://grupoesoc.es", "author": "Grupo ESOC Ingeniería de Servicios, " diff --git a/base_import_match/models/base_import.py b/base_import_match/models/base_import.py index cf9bd95f..6251dd90 100644 --- a/base_import_match/models/base_import.py +++ b/base_import_match/models/base_import.py @@ -1,7 +1,6 @@ # -*- coding: utf-8 -*- # © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis # 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 @@ -83,14 +82,14 @@ class BaseImportMatch(models.Model): def _compute_name(self): """Automatic self-descriptive name for the setting records.""" for s in self: - s.name = "{}: {}".format( + s.name = u"{}: {}".format( s.model_id.display_name, " + ".join( s.field_ids.mapped( lambda r: ( - str(r.field_id.name) + - (" ({})".format(r.imported_value) - if r.conditional else ""))))) + (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): @@ -279,6 +278,7 @@ class BaseImportMatchField(models.Model): match_id = fields.Many2one( comodel_name="base_import.match", string="Match", + ondelete="cascade", required=True) model_id = fields.Many2one( related="match_id.model_id") diff --git a/base_import_match/views/base_import_match_view.xml b/base_import_match/views/base_import_match_view.xml index 06e62d49..a6490a91 100644 --- a/base_import_match/views/base_import_match_view.xml +++ b/base_import_match/views/base_import_match_view.xml @@ -20,7 +20,9 @@ - + Date: Thu, 15 Dec 2016 14:13:36 +0100 Subject: [PATCH 05/10] base_import_match module --- base_import_match/README.rst | 9 ++-- base_import_match/__init__.py | 3 +- base_import_match/__openerp__.py | 14 +++--- base_import_match/data/base_import_match.xml | 33 ++++++++++++++ base_import_match/data/base_import_match.yml | 29 ------------ base_import_match/demo/base_import_match.xml | 45 +++++++++++++++++++ base_import_match/demo/base_import_match.yml | 40 ----------------- base_import_match/models/__init__.py | 3 +- base_import_match/models/base_import.py | 5 ++- base_import_match/tests/__init__.py | 3 +- base_import_match/tests/test_import.py | 3 +- .../views/base_import_match_view.xml | 9 ++-- 12 files changed, 104 insertions(+), 92 deletions(-) create mode 100644 base_import_match/data/base_import_match.xml delete mode 100644 base_import_match/data/base_import_match.yml create mode 100644 base_import_match/demo/base_import_match.xml delete mode 100644 base_import_match/demo/base_import_match.yml diff --git a/base_import_match/README.rst b/base_import_match/README.rst index 6dc1a429..5b971690 100644 --- a/base_import_match/README.rst +++ b/base_import_match/README.rst @@ -84,7 +84,7 @@ To use this module, you need to: .. 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/8.0 + :target: https://runbot.odoo-community.org/runbot/149/9.0 Known Issues / Roadmap ====================== @@ -98,11 +98,7 @@ Bug Tracker Bugs are tracked on `GitHub 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 -`_. +help us smashing it by providing a detailed and welcomed feedback. Credits ======= @@ -111,6 +107,7 @@ Contributors ------------ * Jairo Llopis +* Vicent Cubells Maintainer ---------- diff --git a/base_import_match/__init__.py b/base_import_match/__init__.py index 09356048..197214cd 100644 --- a/base_import_match/__init__.py +++ b/base_import_match/__init__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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 diff --git a/base_import_match/__openerp__.py b/base_import_match/__openerp__.py index d8eb62da..a3564a89 100644 --- a/base_import_match/__openerp__.py +++ b/base_import_match/__openerp__.py @@ -1,13 +1,15 @@ # -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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": "8.0.1.0.1", + "version": "9.0.1.0.0", "category": "Tools", - "website": "https://grupoesoc.es", - "author": "Grupo ESOC Ingeniería de Servicios, " + "website": "https://tecnativa.com", + "author": "Grupo ESOC Ingeniería de Servicios," + "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", "application": False, @@ -17,10 +19,10 @@ ], "data": [ "security/ir.model.access.csv", - "data/base_import_match.yml", + "data/base_import_match.xml", "views/base_import_match_view.xml", ], "demo": [ - "demo/base_import_match.yml", + "demo/base_import_match.xml", ], } diff --git a/base_import_match/data/base_import_match.xml b/base_import_match/data/base_import_match.xml new file mode 100644 index 00000000..b2995871 --- /dev/null +++ b/base_import_match/data/base_import_match.xml @@ -0,0 +1,33 @@ + + + + + + + + 10 + + + + + + + + + True + True + + + + + + 50 + + + + + + + diff --git a/base_import_match/data/base_import_match.yml b/base_import_match/data/base_import_match.yml deleted file mode 100644 index 5f49c911..00000000 --- a/base_import_match/data/base_import_match.yml +++ /dev/null @@ -1,29 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -- !context {noupdate: True} - -# Match partners by VAT when is_company is True -- !record {id: res_partner_vat, model: base_import.match}: - model_id: base.model_res_partner - sequence: 10 - -- !record {id: res_partner_vat_vat, model: base_import.match.field}: - match_id: res_partner_vat - field_id: base.field_res_partner_vat - -- !record {id: res_partner_vat_is_company, model: base_import.match.field}: - match_id: res_partner_vat - field_id: base.field_res_partner_is_company - conditional: True - imported_value: "True" - -# Match users by login -- !record {id: res_users_login, model: base_import.match}: - model_id: base.model_res_users - sequence: 50 - -- !record {id: res_users_login_login, model: base_import.match.field}: - match_id: res_users_login - field_id: base.field_res_users_login diff --git a/base_import_match/demo/base_import_match.xml b/base_import_match/demo/base_import_match.xml new file mode 100644 index 00000000..4e9af7f4 --- /dev/null +++ b/base_import_match/demo/base_import_match.xml @@ -0,0 +1,45 @@ + + + + + + + + 20 + + + + + + + + + + + + + + + + + + 30 + + + + + + + + + + 40 + + + + + + + diff --git a/base_import_match/demo/base_import_match.yml b/base_import_match/demo/base_import_match.yml deleted file mode 100644 index 110e993e..00000000 --- a/base_import_match/demo/base_import_match.yml +++ /dev/null @@ -1,40 +0,0 @@ -# -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - -- !context {noupdate: True} - -# Match partners by name, parent_id and is_company -- !record {id: res_partner_parent_name_is_company, model: base_import.match}: - model_id: base.model_res_partner - sequence: 20 - -- !record {id: res_partner_parent_name_is_company_name, model: base_import.match.field}: - match_id: res_partner_parent_name_is_company - field_id: base.field_res_partner_name - -- !record {id: res_partner_parent_name_is_company_parent, model: base_import.match.field}: - match_id: res_partner_parent_name_is_company - field_id: base.field_res_partner_parent_id - -- !record {id: res_partner_parent_name_is_company_is_company, model: base_import.match.field}: - match_id: res_partner_parent_name_is_company - field_id: base.field_res_partner_is_company - -# Match partner by email -- !record {id: res_partner_email, model: base_import.match}: - model_id: base.model_res_partner - sequence: 30 - -- !record {id: res_partner_email_email, model: base_import.match.field}: - match_id: res_partner_email - field_id: base.field_res_partner_email - -# Match partner by name -- !record {id: res_partner_name, model: base_import.match}: - model_id: base.model_res_partner - sequence: 40 - -- !record {id: res_partner_name_name, model: base_import.match.field}: - match_id: res_partner_name - field_id: base.field_res_partner_name diff --git a/base_import_match/models/__init__.py b/base_import_match/models/__init__.py index ec83d2a4..2e3b69da 100644 --- a/base_import_match/models/__init__.py +++ b/base_import_match/models/__init__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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 diff --git a/base_import_match/models/base_import.py b/base_import_match/models/base_import.py index 6251dd90..5c7d5738 100644 --- a/base_import_match/models/base_import.py +++ b/base_import_match/models/base_import.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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 @@ -20,7 +21,7 @@ class BaseImportMatch(models.Model): "Model", required=True, ondelete="cascade", - domain=[("osv_memory", "=", False)], + domain=[("transient ", "=", False)], help="In this model you will apply the match.") model_name = fields.Char( related="model_id.model", diff --git a/base_import_match/tests/__init__.py b/base_import_match/tests/__init__.py index ce1b8ba3..1d8b5f1b 100644 --- a/base_import_match/tests/__init__.py +++ b/base_import_match/tests/__init__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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 diff --git a/base_import_match/tests/test_import.py b/base_import_match/tests/test_import.py index 5c47663d..0eb432b6 100644 --- a/base_import_match/tests/test_import.py +++ b/base_import_match/tests/test_import.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -# © 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis +# 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 diff --git a/base_import_match/views/base_import_match_view.xml b/base_import_match/views/base_import_match_view.xml index a6490a91..11c9e824 100644 --- a/base_import_match/views/base_import_match_view.xml +++ b/base_import_match/views/base_import_match_view.xml @@ -1,9 +1,9 @@ - - - + Import match form view @@ -78,5 +78,4 @@ action="match_action" parent="base.next_id_9"/> - - + From 8c850b9869724457bffeb5a58bb9d84ad36ac96c Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 29 May 2016 10:11:09 -0400 Subject: [PATCH 06/10] OCA Transbot updated translations from Transifex --- base_import_match/i18n/am.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/ar.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/bg.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/bs.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/ca.po | 169 ++++++++++++++++++++++++++++ base_import_match/i18n/cs.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/da.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/de.po | 170 +++++++++++++++++++++++++++++ base_import_match/i18n/el_GR.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/en_GB.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es.po | 137 ++++++++++++++++++----- base_import_match/i18n/es_AR.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_CL.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_CO.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_CR.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_DO.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_EC.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_ES.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/es_MX.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_PE.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_PY.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/es_VE.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/et.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/eu.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/fa.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/fi.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/fr.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/fr_CA.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/fr_CH.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/gl.po | 165 ++++++++++++++++++++++++++++ base_import_match/i18n/gl_ES.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/he.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/hr.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/hr_HR.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/hu.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/id.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/it.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/ja.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/ko.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/lt.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/lt_LT.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/lv.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/mk.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/mn.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/nb.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/nb_NO.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/nl.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/nl_BE.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/pl.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/pt.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/pt_BR.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/pt_PT.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/ro.po | 165 ++++++++++++++++++++++++++++ base_import_match/i18n/ru.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/sk.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/sl.po | 167 ++++++++++++++++++++++++++++ base_import_match/i18n/sr.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/sr@latin.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/sv.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/th.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/tr.po | 170 +++++++++++++++++++++++++++++ base_import_match/i18n/tr_TR.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/uk.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/vi.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/vi_VN.po | 163 +++++++++++++++++++++++++++ base_import_match/i18n/zh_CN.po | 164 ++++++++++++++++++++++++++++ base_import_match/i18n/zh_TW.po | 163 +++++++++++++++++++++++++++ 67 files changed, 10908 insertions(+), 26 deletions(-) create mode 100644 base_import_match/i18n/am.po create mode 100644 base_import_match/i18n/ar.po create mode 100644 base_import_match/i18n/bg.po create mode 100644 base_import_match/i18n/bs.po create mode 100644 base_import_match/i18n/ca.po create mode 100644 base_import_match/i18n/cs.po create mode 100644 base_import_match/i18n/da.po create mode 100644 base_import_match/i18n/de.po create mode 100644 base_import_match/i18n/el_GR.po create mode 100644 base_import_match/i18n/en_GB.po create mode 100644 base_import_match/i18n/es_AR.po create mode 100644 base_import_match/i18n/es_CL.po create mode 100644 base_import_match/i18n/es_CO.po create mode 100644 base_import_match/i18n/es_CR.po create mode 100644 base_import_match/i18n/es_DO.po create mode 100644 base_import_match/i18n/es_EC.po create mode 100644 base_import_match/i18n/es_ES.po create mode 100644 base_import_match/i18n/es_MX.po create mode 100644 base_import_match/i18n/es_PE.po create mode 100644 base_import_match/i18n/es_PY.po create mode 100644 base_import_match/i18n/es_VE.po create mode 100644 base_import_match/i18n/et.po create mode 100644 base_import_match/i18n/eu.po create mode 100644 base_import_match/i18n/fa.po create mode 100644 base_import_match/i18n/fi.po create mode 100644 base_import_match/i18n/fr.po create mode 100644 base_import_match/i18n/fr_CA.po create mode 100644 base_import_match/i18n/fr_CH.po create mode 100644 base_import_match/i18n/gl.po create mode 100644 base_import_match/i18n/gl_ES.po create mode 100644 base_import_match/i18n/he.po create mode 100644 base_import_match/i18n/hr.po create mode 100644 base_import_match/i18n/hr_HR.po create mode 100644 base_import_match/i18n/hu.po create mode 100644 base_import_match/i18n/id.po create mode 100644 base_import_match/i18n/it.po create mode 100644 base_import_match/i18n/ja.po create mode 100644 base_import_match/i18n/ko.po create mode 100644 base_import_match/i18n/lt.po create mode 100644 base_import_match/i18n/lt_LT.po create mode 100644 base_import_match/i18n/lv.po create mode 100644 base_import_match/i18n/mk.po create mode 100644 base_import_match/i18n/mn.po create mode 100644 base_import_match/i18n/nb.po create mode 100644 base_import_match/i18n/nb_NO.po create mode 100644 base_import_match/i18n/nl.po create mode 100644 base_import_match/i18n/nl_BE.po create mode 100644 base_import_match/i18n/pl.po create mode 100644 base_import_match/i18n/pt.po create mode 100644 base_import_match/i18n/pt_BR.po create mode 100644 base_import_match/i18n/pt_PT.po create mode 100644 base_import_match/i18n/ro.po create mode 100644 base_import_match/i18n/ru.po create mode 100644 base_import_match/i18n/sk.po create mode 100644 base_import_match/i18n/sl.po create mode 100644 base_import_match/i18n/sr.po create mode 100644 base_import_match/i18n/sr@latin.po create mode 100644 base_import_match/i18n/sv.po create mode 100644 base_import_match/i18n/th.po create mode 100644 base_import_match/i18n/tr.po create mode 100644 base_import_match/i18n/tr_TR.po create mode 100644 base_import_match/i18n/uk.po create mode 100644 base_import_match/i18n/vi.po create mode 100644 base_import_match/i18n/vi_VN.po create mode 100644 base_import_match/i18n/zh_CN.po create mode 100644 base_import_match/i18n/zh_TW.po diff --git a/base_import_match/i18n/am.po b/base_import_match/i18n/am.po new file mode 100644 index 00000000..b9ce11d5 --- /dev/null +++ b/base_import_match/i18n/am.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/ar.po b/base_import_match/i18n/ar.po new file mode 100644 index 00000000..239698b8 --- /dev/null +++ b/base_import_match/i18n/ar.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# SaFi J. , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: SaFi J. , 2016\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "الحقل" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "تجميع حسب" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "المعرف" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "النموذج" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "الاسم" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "المسلسل" diff --git a/base_import_match/i18n/bg.po b/base_import_match/i18n/bg.po new file mode 100644 index 00000000..684fd6d3 --- /dev/null +++ b/base_import_match/i18n/bg.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Групирай По" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Име" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Последователност" diff --git a/base_import_match/i18n/bs.po b/base_import_match/i18n/bs.po new file mode 100644 index 00000000..56912525 --- /dev/null +++ b/base_import_match/i18n/bs.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupiši po" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Ime" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sekvenca" diff --git a/base_import_match/i18n/ca.po b/base_import_match/i18n/ca.po new file mode 100644 index 00000000..2daa6ea8 --- /dev/null +++ b/base_import_match/i18n/ca.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Marc Tormo i Bochaca , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-19 17:59+0000\n" +"PO-Revision-Date: 2017-04-19 17:59+0000\n" +"Last-Translator: Marc Tormo i Bochaca , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Condicional " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 "Deduplicar ajustaments abans de fer importacions CSV." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "Activeu si voleu utilitzar aquest camp només en certes condicions. " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Camp" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +msgstr "Nom del Camp" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base_import_match_field +msgid "Field import match definition" +msgstr "Camps que defineixen una associació d'importació " + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "Camps que seran part de una clau única." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Camps " + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "Camps que definiran una clau única." + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupa Per" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 "" +"Si el valor importat no es aquest, el conjunt de regles d'associació ha de " +"ser descartat. Aneu amb compte, aquestes dades sempre són tractades com una " +"cadena, i la comparació és sensible a majúscules i minúscules, per la qual " +"cosa si s'estableix 'Veritat', NO coincidirà ni amb '1' ni amb 'veritat', " +"només EXACTAMENT amb 'Veritat'." + +#. module: base_import_match +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "Importar Associació " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "Valor Importat " + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "En aquest model haureu d'aplicar l'associació." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Associar " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nom" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Seqüència" diff --git a/base_import_match/i18n/cs.po b/base_import_match/i18n/cs.po new file mode 100644 index 00000000..8042f220 --- /dev/null +++ b/base_import_match/i18n/cs.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Seskupit podle" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Název" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Číselná řada" diff --git a/base_import_match/i18n/da.po b/base_import_match/i18n/da.po new file mode 100644 index 00000000..9be7c929 --- /dev/null +++ b/base_import_match/i18n/da.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Gruppér efter" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "Id" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Navn" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Rækkefølge" diff --git a/base_import_match/i18n/de.po b/base_import_match/i18n/de.po new file mode 100644 index 00000000..e73995b4 --- /dev/null +++ b/base_import_match/i18n/de.po @@ -0,0 +1,170 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-04 07:38+0000\n" +"PO-Revision-Date: 2017-03-04 07:38+0000\n" +"Last-Translator: Rudolf Schnapka , 2017\n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Bedingt" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 "Dubletten in Einstellungen vor CSV-Importen bereinigen." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" +"Aktivieren, wenn Sie dieses Feld nur unter bestimmten Bedingungen verwenden " +"möchten." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Feld" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base_import_match_field +msgid "Field import match definition" +msgstr "Festlegung für Import-Übereinstimmung" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "Feld, welche als Teil eines eindeutigen Schlüssels dienen wird." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Felder" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "Felder, die einen eindeutigen Schlüssel bilden sollen." + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Gruppieren nach" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 "" +"Wenn der importierte Wert nicht dieser ist, wird die ganze " +"Übereinstimmungsregel verworfen. Vorsicht, dieser Wert wird immer als " +"Textstring behandelt und Vergleiche unterscheiden Gross-/Kleinschreibung, so" +" dass Ihr Wert 'True' z.B. nicht mit '1' oder 'true' übereinstimmen wird." + +#. module: base_import_match +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "Import-Übereinstimmung" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "Importierter Wert" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "In diesem Modell wenden Sie die Übereinstimmung an." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert von" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Übereinstimmung" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modell" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Name" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Reihenfolge" diff --git a/base_import_match/i18n/el_GR.po b/base_import_match/i18n/el_GR.po new file mode 100644 index 00000000..93975dfe --- /dev/null +++ b/base_import_match/i18n/el_GR.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Kostas Goutoudis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Kostas Goutoudis , 2016\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el_GR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Ομαδοποίηση Ανά" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Ονομασία" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Ιεράρχηση" diff --git a/base_import_match/i18n/en_GB.po b/base_import_match/i18n/en_GB.po new file mode 100644 index 00000000..23db8bc1 --- /dev/null +++ b/base_import_match/i18n/en_GB.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Group By" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Name" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sequence" diff --git a/base_import_match/i18n/es.po b/base_import_match/i18n/es.po index 6f7fbc6c..39138791 100644 --- a/base_import_match/i18n/es.po +++ b/base_import_match/i18n/es.po @@ -1,21 +1,40 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: -# * base_import_match -# +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Pedro M. Baeza , 2016 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 8.0\n" +"Project-Id-Version: Odoo Server 9.0c\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-05-11 12:24+0200\n" -"PO-Revision-Date: 2016-05-11 12:26+0200\n" -"Language-Team: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Pedro M. Baeza , 2016\n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: Jairo Llopis \n" -"Language: es_ES\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Condicional" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "Creado el" #. module: base_import_match #: model:ir.model,name:base_import_match.model_base_import_match @@ -23,61 +42,127 @@ 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name msgid "Display Name" msgstr "Nombre a mostrar" #. module: base_import_match -#: sql_constraint:base_import.match:0 -msgid "Duplicated match!" -msgstr "¡Coincidencia duplicada!" +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "Habilítelo si quiere usar este campo sólo bajo ciertas condiciones." #. module: base_import_match -#: field:base_import.match,field_ids:0 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Campo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +msgstr "Nombre del campo" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base_import_match_field +msgid "Field import match definition" +msgstr "Definición de concordancia de importación del campo" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "Campo que formará parte de una clave única." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids msgid "Fields" msgstr "Campos" #. module: base_import_match -#: help:base_import.match,field_ids:0 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids 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 +#: model:ir.ui.view,arch_db:base_import_match.match_search_view msgid "Group By" msgstr "Agrupar por" #. 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.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 "" +"Si el valor importado no es éste, la regla de concordancia será descartada. " +"Tenga cuidado, ya que estos datos siempre serán tratados como una cadena, y " +"la comparación en sensible a las mayúsculas, por lo que si establece 'True'," +" no concordará con '1' ni con 'true'." + +#. module: base_import_match #: model:ir.actions.act_window,name:base_import_match.match_action #: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view msgid "Import Match" msgstr "Coincidencia de importación" #. module: base_import_match -#: help:base_import.match,model_id:0 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "Valor importado" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update msgid "Last Modified on" msgstr "Última actualización por" #. 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Casar referencias" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view msgid "Model" msgstr "Modelo" #. module: base_import_match -#: field:base_import.match,name:0 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name msgid "Name" msgstr "Nombre" #. module: base_import_match -#: field:base_import.match,sequence:0 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" diff --git a/base_import_match/i18n/es_AR.po b/base_import_match/i18n/es_AR.po new file mode 100644 index 00000000..71d33108 --- /dev/null +++ b/base_import_match/i18n/es_AR.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_CL.po b/base_import_match/i18n/es_CL.po new file mode 100644 index 00000000..a19b2905 --- /dev/null +++ b/base_import_match/i18n/es_CL.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_CO.po b/base_import_match/i18n/es_CO.po new file mode 100644 index 00000000..f158551e --- /dev/null +++ b/base_import_match/i18n/es_CO.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_CR.po b/base_import_match/i18n/es_CR.po new file mode 100644 index 00000000..aa29a5e3 --- /dev/null +++ b/base_import_match/i18n/es_CR.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_DO.po b/base_import_match/i18n/es_DO.po new file mode 100644 index 00000000..bed9d081 --- /dev/null +++ b/base_import_match/i18n/es_DO.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_EC.po b/base_import_match/i18n/es_EC.po new file mode 100644 index 00000000..28ff428c --- /dev/null +++ b/base_import_match/i18n/es_EC.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_ES.po b/base_import_match/i18n/es_ES.po new file mode 100644 index 00000000..83fcef02 --- /dev/null +++ b/base_import_match/i18n/es_ES.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-16 10:39+0000\n" +"PO-Revision-Date: 2017-02-16 10:39+0000\n" +"Last-Translator: Fernando Lara , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/es_MX.po b/base_import_match/i18n/es_MX.po new file mode 100644 index 00000000..6ed93288 --- /dev/null +++ b/base_import_match/i18n/es_MX.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modelo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_PE.po b/base_import_match/i18n/es_PE.po new file mode 100644 index 00000000..06181b0a --- /dev/null +++ b/base_import_match/i18n/es_PE.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_PY.po b/base_import_match/i18n/es_PY.po new file mode 100644 index 00000000..3f2d5f08 --- /dev/null +++ b/base_import_match/i18n/es_PY.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/es_VE.po b/base_import_match/i18n/es_VE.po new file mode 100644 index 00000000..6601ca8f --- /dev/null +++ b/base_import_match/i18n/es_VE.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nombre" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/et.po b/base_import_match/i18n/et.po new file mode 100644 index 00000000..00dd4872 --- /dev/null +++ b/base_import_match/i18n/et.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Rühmitamine" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nimi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Jada" diff --git a/base_import_match/i18n/eu.po b/base_import_match/i18n/eu.po new file mode 100644 index 00000000..ebae05af --- /dev/null +++ b/base_import_match/i18n/eu.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-22 00:48+0000\n" +"PO-Revision-Date: 2017-02-22 00:48+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Group By" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Izena" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sekuentzia" diff --git a/base_import_match/i18n/fa.po b/base_import_match/i18n/fa.po new file mode 100644 index 00000000..8b2027fc --- /dev/null +++ b/base_import_match/i18n/fa.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "گروه‌بندی برمبنای" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "شناسه" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "نام" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "دنباله" diff --git a/base_import_match/i18n/fi.po b/base_import_match/i18n/fi.po new file mode 100644 index 00000000..dde07a0a --- /dev/null +++ b/base_import_match/i18n/fi.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Jarmo Kortetjärvi , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-03 07:19+0000\n" +"PO-Revision-Date: 2017-05-03 07:19+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Kenttä" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Kentät" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Ryhmittele" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Mall" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nimi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Järjestysluku" diff --git a/base_import_match/i18n/fr.po b/base_import_match/i18n/fr.po new file mode 100644 index 00000000..75a5e997 --- /dev/null +++ b/base_import_match/i18n/fr.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# dglucose , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: dglucose , 2016\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Champ" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Champs" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grouper par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Mis à jour par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Mis à jour le" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modèle" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nom" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Séquence" diff --git a/base_import_match/i18n/fr_CA.po b/base_import_match/i18n/fr_CA.po new file mode 100644 index 00000000..07b52d62 --- /dev/null +++ b/base_import_match/i18n/fr_CA.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Martin Malorni , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Martin Malorni , 2016\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Champs" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "Identifiant" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modèle" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nom" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/fr_CH.po b/base_import_match/i18n/fr_CH.po new file mode 100644 index 00000000..964c0010 --- /dev/null +++ b/base_import_match/i18n/fr_CH.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# leemannd , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: leemannd , 2016\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CH\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/gl.po b/base_import_match/i18n/gl.po new file mode 100644 index 00000000..47064e2b --- /dev/null +++ b/base_import_match/i18n/gl.po @@ -0,0 +1,165 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Alejandro Santana , 2016 +# César Castro Cruz , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: César Castro Cruz , 2016\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Condicional" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nome" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secuencia" diff --git a/base_import_match/i18n/gl_ES.po b/base_import_match/i18n/gl_ES.po new file mode 100644 index 00000000..8589bffd --- /dev/null +++ b/base_import_match/i18n/gl_ES.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/he.po b/base_import_match/i18n/he.po new file mode 100644 index 00000000..9d255e39 --- /dev/null +++ b/base_import_match/i18n/he.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "קבץ לפי" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "מזהה" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "שם" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "רצף" diff --git a/base_import_match/i18n/hr.po b/base_import_match/i18n/hr.po new file mode 100644 index 00000000..d24336a9 --- /dev/null +++ b/base_import_match/i18n/hr.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Polja" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupiraj po" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Naziv" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sekvenca" diff --git a/base_import_match/i18n/hr_HR.po b/base_import_match/i18n/hr_HR.po new file mode 100644 index 00000000..e9890db5 --- /dev/null +++ b/base_import_match/i18n/hr_HR.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Bole , 2016\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Prupiraj po" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Naziv" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/hu.po b/base_import_match/i18n/hu.po new file mode 100644 index 00000000..4d23b37d --- /dev/null +++ b/base_import_match/i18n/hu.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Csoportosítás..." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Illesztés" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modell, minta" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Név" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sorszám" diff --git a/base_import_match/i18n/id.po b/base_import_match/i18n/id.po new file mode 100644 index 00000000..6c634c99 --- /dev/null +++ b/base_import_match/i18n/id.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Dikelompokan berdasarkan .." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nama" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Berurutan" diff --git a/base_import_match/i18n/it.po b/base_import_match/i18n/it.po new file mode 100644 index 00000000..8214801e --- /dev/null +++ b/base_import_match/i18n/it.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Paolo Valier , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-04-19 17:59+0000\n" +"PO-Revision-Date: 2017-04-19 17:59+0000\n" +"Last-Translator: Paolo Valier , 2017\n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Condizionale" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nome da visualizzare" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Campo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Campi" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Raggruppa per" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "Valore importato" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modello" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nome" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sequenza" diff --git a/base_import_match/i18n/ja.po b/base_import_match/i18n/ja.po new file mode 100644 index 00000000..bf9d1040 --- /dev/null +++ b/base_import_match/i18n/ja.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "作成者" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "グループ化" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "名称" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "付番" diff --git a/base_import_match/i18n/ko.po b/base_import_match/i18n/ko.po new file mode 100644 index 00000000..7bca7aab --- /dev/null +++ b/base_import_match/i18n/ko.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "작성자" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "그룹화" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "이름" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "순서" diff --git a/base_import_match/i18n/lt.po b/base_import_match/i18n/lt.po new file mode 100644 index 00000000..87db9818 --- /dev/null +++ b/base_import_match/i18n/lt.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupuoti pagal" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Pavadinimas" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Seka" diff --git a/base_import_match/i18n/lt_LT.po b/base_import_match/i18n/lt_LT.po new file mode 100644 index 00000000..10068bb1 --- /dev/null +++ b/base_import_match/i18n/lt_LT.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# Arminas Grigonis , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Arminas Grigonis , 2016\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt_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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/lv.po b/base_import_match/i18n/lv.po new file mode 100644 index 00000000..b1ce17c3 --- /dev/null +++ b/base_import_match/i18n/lv.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupēt pēc" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nosaukums" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sērija" diff --git a/base_import_match/i18n/mk.po b/base_import_match/i18n/mk.po new file mode 100644 index 00000000..77d42da2 --- /dev/null +++ b/base_import_match/i18n/mk.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Групирај по" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Име" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Секвенца" diff --git a/base_import_match/i18n/mn.po b/base_import_match/i18n/mn.po new file mode 100644 index 00000000..aec24a83 --- /dev/null +++ b/base_import_match/i18n/mn.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Бүлэглэх" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Нэр" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Дараалал" diff --git a/base_import_match/i18n/nb.po b/base_import_match/i18n/nb.po new file mode 100644 index 00000000..4f234dd4 --- /dev/null +++ b/base_import_match/i18n/nb.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupper etter" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Navn" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sekvens" diff --git a/base_import_match/i18n/nb_NO.po b/base_import_match/i18n/nb_NO.po new file mode 100644 index 00000000..3a47076a --- /dev/null +++ b/base_import_match/i18n/nb_NO.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# Imre Kristoffer Eilertsen , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2016\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "Laget 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Gruppe laget av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/nl.po b/base_import_match/i18n/nl.po new file mode 100644 index 00000000..066b23d2 --- /dev/null +++ b/base_import_match/i18n/nl.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Veld" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Groepeer op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Match" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Naam" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Reeks" diff --git a/base_import_match/i18n/nl_BE.po b/base_import_match/i18n/nl_BE.po new file mode 100644 index 00000000..4f767d59 --- /dev/null +++ b/base_import_match/i18n/nl_BE.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Groeperen op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Naam:" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Volgorde" diff --git a/base_import_match/i18n/pl.po b/base_import_match/i18n/pl.po new file mode 100644 index 00000000..855f8edb --- /dev/null +++ b/base_import_match/i18n/pl.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Pogrupuj wg" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nazwa" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Numeracja" diff --git a/base_import_match/i18n/pt.po b/base_import_match/i18n/pt.po new file mode 100644 index 00000000..4c95af6e --- /dev/null +++ b/base_import_match/i18n/pt.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Campos" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupar por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última Modificação Por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modelo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nome" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sequência" diff --git a/base_import_match/i18n/pt_BR.po b/base_import_match/i18n/pt_BR.po new file mode 100644 index 00000000..a5f6406d --- /dev/null +++ b/base_import_match/i18n/pt_BR.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Campo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Campos" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Agrupado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "Identificação" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modelo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nome" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sequência" diff --git a/base_import_match/i18n/pt_PT.po b/base_import_match/i18n/pt_PT.po new file mode 100644 index 00000000..c6fe3d69 --- /dev/null +++ b/base_import_match/i18n/pt_PT.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Campos" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Última Atualização Por" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Última Atualização Em" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Modelo" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nome" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/ro.po b/base_import_match/i18n/ro.po new file mode 100644 index 00000000..5508b1c2 --- /dev/null +++ b/base_import_match/i18n/ro.po @@ -0,0 +1,165 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Dorin Hongu , 2016 +# Fekete Mihai , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Fekete Mihai , 2016\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "Creat la" + +#. 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupează după" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Nume" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Secvență" diff --git a/base_import_match/i18n/ru.po b/base_import_match/i18n/ru.po new file mode 100644 index 00000000..f57ee3dc --- /dev/null +++ b/base_import_match/i18n/ru.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Создано" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Поле" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Модель" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Название" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Последовательность" diff --git a/base_import_match/i18n/sk.po b/base_import_match/i18n/sk.po new file mode 100644 index 00000000..7a5d3c7d --- /dev/null +++ b/base_import_match/i18n/sk.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Zoskupiť podľa" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Meno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Postupnosť" diff --git a/base_import_match/i18n/sl.po b/base_import_match/i18n/sl.po new file mode 100644 index 00000000..ed320967 --- /dev/null +++ b/base_import_match/i18n/sl.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Pogojno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Polje" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +msgstr "" + +#. 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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "Polje, ki bo del unikatnega ključa" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Polja" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "Polja, ki bodo določala unikatni ključ" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Združi po" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "Ujemanje uvoza" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "Uvožena vrednost" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "V tem modelu boste uveljavili ujemanje." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Ujemanje" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Naziv" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Zaporedje" diff --git a/base_import_match/i18n/sr.po b/base_import_match/i18n/sr.po new file mode 100644 index 00000000..101064c3 --- /dev/null +++ b/base_import_match/i18n/sr.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupiši po" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Ime" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Niz" diff --git a/base_import_match/i18n/sr@latin.po b/base_import_match/i18n/sr@latin.po new file mode 100644 index 00000000..6fba918f --- /dev/null +++ b/base_import_match/i18n/sr@latin.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupisano po" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Ime:" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sekvenca" diff --git a/base_import_match/i18n/sv.po b/base_import_match/i18n/sv.po new file mode 100644 index 00000000..d9a4be4d --- /dev/null +++ b/base_import_match/i18n/sv.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Gruppera efter" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Namn" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Nummerserie" diff --git a/base_import_match/i18n/th.po b/base_import_match/i18n/th.po new file mode 100644 index 00000000..8f243f2e --- /dev/null +++ b/base_import_match/i18n/th.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "จัดกลุ่มโดย" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "รหัส" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "ชื่อ" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "กำหนดเลขที่เอกสาร" diff --git a/base_import_match/i18n/tr.po b/base_import_match/i18n/tr.po new file mode 100644 index 00000000..19ffe195 --- /dev/null +++ b/base_import_match/i18n/tr.po @@ -0,0 +1,170 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Ahmet Altinisik , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-29 03:39+0000\n" +"PO-Revision-Date: 2016-12-29 03:39+0000\n" +"Last-Translator: Ahmet Altinisik , 2016\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "Koşullı" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 "CSV içe aktarmadan önce ayarları tekilleştir" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" +"Eğer bu alanı sadece bazı koşullarda kullanmak isterseniz etkinleştirin." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Alan" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base_import_match_field +msgid "Field import match definition" +msgstr "Alan içe aktarımında eşleştirme tanımı" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "Bir tekil anahtarın parçası olacak alan." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Alanlar" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "tekil anahtarı tanımlayacak alan." + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupla" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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ğer içeri aktarılan değer bu değil ise bütün eşleştirme kuralı dikkate " +"alınmayacak. Dikkatli olun, bu alan her zaman bir string olarak " +"değerlendirilir, ve karşılaştırma büyük küçük harf duyarlıdır. Mesela alana " +"'True' girmişseniz '1' ile ya da 'true' ile eşleşmeyecektir sadece harf harf" +" aynı olan 'True' ile eşleşir." + +#. module: base_import_match +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "İçe Aktarma Eşleşmesi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "Alınan Değer" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "Bu modelde eşleştirmeyi uygulayacaksınız." + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Son güncellenme" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "Eşleştirme" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Adı" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sıra" diff --git a/base_import_match/i18n/tr_TR.po b/base_import_match/i18n/tr_TR.po new file mode 100644 index 00000000..2ca68028 --- /dev/null +++ b/base_import_match/i18n/tr_TR.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-07 04:03+0000\n" +"PO-Revision-Date: 2017-01-07 04:03+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr_TR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. 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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Grupla" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "Kimlik" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Tip" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Ad" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Sıra" diff --git a/base_import_match/i18n/uk.po b/base_import_match/i18n/uk.po new file mode 100644 index 00000000..9d95d78c --- /dev/null +++ b/base_import_match/i18n/uk.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Створив" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Групувати за" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Name" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Послідовність" diff --git a/base_import_match/i18n/vi.po b/base_import_match/i18n/vi.po new file mode 100644 index 00000000..a13ec1e2 --- /dev/null +++ b/base_import_match/i18n/vi.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Group By" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Tên" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "Trình tự" diff --git a/base_import_match/i18n/vi_VN.po b/base_import_match/i18n/vi_VN.po new file mode 100644 index 00000000..ab98ce3f --- /dev/null +++ b/base_import_match/i18n/vi_VN.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi_VN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +msgid "Created on" +msgstr "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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Tên" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" diff --git a/base_import_match/i18n/zh_CN.po b/base_import_match/i18n/zh_CN.po new file mode 100644 index 00000000..23efed8e --- /dev/null +++ b/base_import_match/i18n/zh_CN.po @@ -0,0 +1,164 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +# Jeffery Chen Fan , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: Jeffery Chen Fan , 2016\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "创建者" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "分组" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "模型" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "名称" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "序号" diff --git a/base_import_match/i18n/zh_TW.po b/base_import_match/i18n/zh_TW.po new file mode 100644 index 00000000..72bbbf2e --- /dev/null +++ b/base_import_match/i18n/zh_TW.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# OCA Transbot , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 9.0c\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-12-23 21:53+0000\n" +"PO-Revision-Date: 2016-12-23 21:53+0000\n" +"Last-Translator: OCA Transbot , 2016\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "建立者" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "分組方式" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "編號" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "名稱" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "序列" From ce0d4f6affb303e81c818d17966de43c0734bb15 Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Thu, 22 Jun 2017 12:09:47 +0200 Subject: [PATCH 07/10] [10.0][MIG][base_import_match] Migration and update Includes: - Normal migration steps. - Usage of brand new `_inherit = "base"` in Odoo 10, which implies removing a lot of monkey-patching code. - Log a warning when multiple matches are found. --- base_import_match/README.rst | 4 +- .../{__openerp__.py => __manifest__.py} | 2 +- base_import_match/models/__init__.py | 1 + base_import_match/models/base.py | 54 +++++ base_import_match/models/base_import.py | 198 ++++-------------- base_import_match/tests/test_import.py | 2 +- 6 files changed, 96 insertions(+), 165 deletions(-) rename base_import_match/{__openerp__.py => __manifest__.py} (96%) create mode 100644 base_import_match/models/base.py diff --git a/base_import_match/README.rst b/base_import_match/README.rst index 5b971690..c11ff80b 100644 --- a/base_import_match/README.rst +++ b/base_import_match/README.rst @@ -61,7 +61,7 @@ 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. +#. Choose the *Fields* that conform a 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*. @@ -84,7 +84,7 @@ To use this module, you need to: .. 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 + :target: https://runbot.odoo-community.org/runbot/149/10.0 Known Issues / Roadmap ====================== diff --git a/base_import_match/__openerp__.py b/base_import_match/__manifest__.py similarity index 96% rename from base_import_match/__openerp__.py rename to base_import_match/__manifest__.py index a3564a89..a9068280 100644 --- a/base_import_match/__openerp__.py +++ b/base_import_match/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Base Import Match", "summary": "Try to avoid duplicates before importing", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "category": "Tools", "website": "https://tecnativa.com", "author": "Grupo ESOC Ingeniería de Servicios," diff --git a/base_import_match/models/__init__.py b/base_import_match/models/__init__.py index 2e3b69da..45ac4f35 100644 --- a/base_import_match/models/__init__.py +++ b/base_import_match/models/__init__.py @@ -3,4 +3,5 @@ # Copyright 2016 Tecnativa - Vicent Cubells # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from . import base from . import base_import diff --git a/base_import_match/models/base.py b/base_import_match/models/base.py new file mode 100644 index 00000000..62dff40b --- /dev/null +++ b/base_import_match/models/base.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +# Copyright 2017 Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +from odoo import api, models + + +class Base(models.AbstractModel): + _inherit = "base" + + @api.model + def load(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. + """ + # We only need to patch this call if there are usable rules for it + if self.env["base_import.match"]._usable_rules(self._name, fields): + 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 + continue + 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)) + # We will import the patched data to get updates on matches + data = newdata + # Normal method handles the rest of the job + return super(Base, self).load(fields, data) diff --git a/base_import_match/models/base_import.py b/base_import_match/models/base_import.py index 5c7d5738..9350ce5a 100644 --- a/base_import_match/models/base_import.py +++ b/base_import_match/models/base_import.py @@ -2,8 +2,10 @@ # 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 +import logging +from odoo import api, fields, models, tools + +_logger = logging.getLogger(__name__) class BaseImportMatch(models.Model): @@ -21,7 +23,7 @@ class BaseImportMatch(models.Model): "Model", required=True, ondelete="cascade", - domain=[("transient ", "=", False)], + domain=[("transient", "=", False)], help="In this model you will apply the match.") model_name = fields.Char( related="model_id.model", @@ -34,63 +36,18 @@ class BaseImportMatch(models.Model): 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() + self.field_ids = False - @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))))) + for one in self: + one.name = u"{}: {}".format( + one.model_id.display_name, + " + ".join(one.field_ids.mapped("display_name")), + ) @api.model def _match_find(self, model, converted_row, imported_row): @@ -100,12 +57,12 @@ class BaseImportMatch(models.Model): imported data, and return a match for the first rule that returns a single result. - :param openerp.models.Model model: + :param odoo.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. + :meth:`odoo.models.Model._convert_records` returns. :param dict imported_row: Row as it is being imported, in format:: @@ -116,18 +73,16 @@ class BaseImportMatch(models.Model): ... } - :return openerp.models.Model: + :return odoo.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()) - + usable = self._usable_rules(model._name, converted_row) # 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: @@ -135,114 +90,26 @@ class BaseImportMatch(models.Model): 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 - + elif match: + _logger.warning( + "Found multiple matches for model %s and domain %s; " + "falling back to default behavior (create new record)", + model._name, + domain, + ) # 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): + @tools.ormcache("model_name", "fields") + def _usable_rules(self, model_name, fields): """Return a set of elements usable for calling ``load()``. :param str model_name: @@ -251,15 +118,16 @@ class BaseImportMatch(models.Model): :param list(str|bool) fields: List of field names being imported. + + :return bool: + Indicates if we should patch its load method. """ 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 - + result |= record return result @@ -291,7 +159,15 @@ class BaseImportMatchField(models.Model): "string, and comparison is case-sensitive so if you set 'True', " "it will NOT match '1' nor 'true', only EXACTLY 'True'.") - @api.multi + @api.depends("conditional", "field_id", "imported_value") + def _compute_display_name(self): + for one in self: + pattern = u"{name} ({cond})" if one.conditional else u"{name}" + one.display_name = pattern.format( + name=one.field_id.name, + cond=one.imported_value, + ) + @api.onchange("field_id", "match_id", "conditional", "imported_value") def _onchange_match_id_name(self): """Update match name.""" diff --git a/base_import_match/tests/test_import.py b/base_import_match/tests/test_import.py index 0eb432b6..b7d977fa 100644 --- a/base_import_match/tests/test_import.py +++ b/base_import_match/tests/test_import.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from os import path -from openerp.tests.common import TransactionCase +from odoo.tests.common import TransactionCase PATH = path.join(path.dirname(__file__), "import_data", "%s.csv") From c7c428251377dc6581717799246a85f73980c2aa Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sat, 2 Dec 2017 12:26:41 +0100 Subject: [PATCH 08/10] OCA Transbot updated translations from Transifex --- base_import_match/i18n/de.po | 17 ++-- base_import_match/i18n/es.po | 18 ++-- base_import_match/i18n/hr.po | 31 +++--- base_import_match/i18n/it.po | 17 ++-- base_import_match/i18n/nl_NL.po | 168 ++++++++++++++++++++++++++++++++ base_import_match/i18n/ro.po | 22 +++-- 6 files changed, 234 insertions(+), 39 deletions(-) create mode 100644 base_import_match/i18n/nl_NL.po diff --git a/base_import_match/i18n/de.po b/base_import_match/i18n/de.po index e73995b4..b8c4a674 100644 --- a/base_import_match/i18n/de.po +++ b/base_import_match/i18n/de.po @@ -3,15 +3,15 @@ # * base_import_match # # Translators: -# OCA Transbot , 2016 -# Rudolf Schnapka , 2017 +# Niki Waibel , 2017 +# OCA Transbot , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-04 07:38+0000\n" -"PO-Revision-Date: 2017-03-04 07:38+0000\n" -"Last-Translator: Rudolf Schnapka , 2017\n" +"POT-Creation-Date: 2017-12-01 02:10+0000\n" +"PO-Revision-Date: 2017-12-01 02:10+0000\n" +"Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -168,3 +168,8 @@ msgstr "Name" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Reihenfolge" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "base" diff --git a/base_import_match/i18n/es.po b/base_import_match/i18n/es.po index 39138791..7c404942 100644 --- a/base_import_match/i18n/es.po +++ b/base_import_match/i18n/es.po @@ -3,15 +3,16 @@ # * base_import_match # # Translators: -# OCA Transbot , 2016 -# Pedro M. Baeza , 2016 +# Pedro M. Baeza , 2017 +# OCA Transbot , 2017 +# Fernando Lara , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 21:53+0000\n" -"PO-Revision-Date: 2016-12-23 21:53+0000\n" -"Last-Translator: Pedro M. Baeza , 2016\n" +"POT-Creation-Date: 2017-12-01 02:10+0000\n" +"PO-Revision-Date: 2017-12-01 02:10+0000\n" +"Last-Translator: Fernando Lara , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -166,3 +167,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "base de datos" diff --git a/base_import_match/i18n/hr.po b/base_import_match/i18n/hr.po index d24336a9..355e39c3 100644 --- a/base_import_match/i18n/hr.po +++ b/base_import_match/i18n/hr.po @@ -3,14 +3,16 @@ # * base_import_match # # Translators: -# OCA Transbot , 2016 +# Goran Kliska , 2017 +# OCA Transbot , 2017 +# Bole , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 21:53+0000\n" -"PO-Revision-Date: 2016-12-23 21:53+0000\n" -"Last-Translator: OCA Transbot , 2016\n" +"POT-Creation-Date: 2018-03-02 18:40+0000\n" +"PO-Revision-Date: 2018-03-02 18:40+0000\n" +"Last-Translator: Bole , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +23,7 @@ msgstr "" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional msgid "Conditional" -msgstr "" +msgstr "Uvjetno" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid @@ -54,22 +56,22 @@ msgstr "" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id msgid "Field" -msgstr "" +msgstr "Polje" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name msgid "Field Name" -msgstr "" +msgstr "Naziv polja" #. module: base_import_match #: model:ir.model,name:base_import_match.model_base_import_match_field msgid "Field import match definition" -msgstr "" +msgstr "Definicja usporedbe za uvoz polja" #. module: base_import_match #: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id msgid "Field that will be part of an unique key." -msgstr "" +msgstr "Polje koje će biti dio jedinstvenog ključa" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids @@ -79,7 +81,7 @@ msgstr "Polja" #. module: base_import_match #: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids msgid "Fields that will define an unique key." -msgstr "" +msgstr "Polje koje će definirati jedinstveni ključ." #. module: base_import_match #: model:ir.ui.view,arch_db:base_import_match.match_search_view @@ -113,7 +115,7 @@ msgstr "" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value msgid "Imported value" -msgstr "" +msgstr "Uvežena vrijednost" #. module: base_import_match #: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id @@ -161,3 +163,8 @@ msgstr "Naziv" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sekvenca" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "base" diff --git a/base_import_match/i18n/it.po b/base_import_match/i18n/it.po index 8214801e..4dca4d17 100644 --- a/base_import_match/i18n/it.po +++ b/base_import_match/i18n/it.po @@ -3,14 +3,14 @@ # * base_import_match # # Translators: -# OCA Transbot , 2016 +# OCA Transbot , 2017 # Paolo Valier , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-19 17:59+0000\n" -"PO-Revision-Date: 2017-04-19 17:59+0000\n" +"POT-Creation-Date: 2018-01-06 02:24+0000\n" +"PO-Revision-Date: 2018-01-06 02:24+0000\n" "Last-Translator: Paolo Valier , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" "MIME-Version: 1.0\n" @@ -28,13 +28,13 @@ msgstr "Condizionale" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid msgid "Created by" -msgstr "Created by" +msgstr "Creato da" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date msgid "Created on" -msgstr "Created on" +msgstr "Creato il" #. module: base_import_match #: model:ir.model,name:base_import_match.model_base_import_match @@ -162,3 +162,8 @@ msgstr "Nome" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sequenza" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/nl_NL.po b/base_import_match/i18n/nl_NL.po new file mode 100644 index 00000000..82637a55 --- /dev/null +++ b/base_import_match/i18n/nl_NL.po @@ -0,0 +1,168 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-16 02:17+0000\n" +"PO-Revision-Date: 2017-12-16 02:17+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "weergavenaam" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "Veld" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "Velden" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "Groeperen op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "ID" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "Model" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "Naam" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "volgorde" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/ro.po b/base_import_match/i18n/ro.po index 5508b1c2..ce295cc6 100644 --- a/base_import_match/i18n/ro.po +++ b/base_import_match/i18n/ro.po @@ -3,16 +3,15 @@ # * base_import_match # # Translators: -# OCA Transbot , 2016 -# Dorin Hongu , 2016 -# Fekete Mihai , 2016 +# OCA Transbot , 2017 +# Daniel Schweiger , 2017 msgid "" msgstr "" -"Project-Id-Version: Odoo Server 9.0c\n" +"Project-Id-Version: Odoo Server 10.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-12-23 21:53+0000\n" -"PO-Revision-Date: 2016-12-23 21:53+0000\n" -"Last-Translator: Fekete Mihai , 2016\n" +"POT-Creation-Date: 2017-12-01 02:10+0000\n" +"PO-Revision-Date: 2017-12-01 02:10+0000\n" +"Last-Translator: Daniel Schweiger , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,7 +55,7 @@ msgstr "" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id msgid "Field" -msgstr "" +msgstr "Columna" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name @@ -152,7 +151,7 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name #: model:ir.ui.view,arch_db:base_import_match.match_search_view msgid "Model" -msgstr "" +msgstr "Model" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name @@ -163,3 +162,8 @@ msgstr "Nume" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secvență" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" From 815e44842ed86c8c118b9c1f6233e7fc0c2ac01f Mon Sep 17 00:00:00 2001 From: oca-travis Date: Sun, 24 Jun 2018 08:20:15 +0000 Subject: [PATCH 09/10] [UPD] Update base_import_match.pot --- base_import_match/i18n/am.po | 13 +- base_import_match/i18n/ar.po | 16 +- base_import_match/i18n/base_import_match.pot | 160 +++++++++++++++++++ base_import_match/i18n/bg.po | 13 +- base_import_match/i18n/bs.po | 16 +- base_import_match/i18n/ca.po | 13 +- base_import_match/i18n/cs.po | 13 +- base_import_match/i18n/da.po | 13 +- base_import_match/i18n/de.po | 12 +- base_import_match/i18n/el_GR.po | 16 +- base_import_match/i18n/en_GB.po | 16 +- base_import_match/i18n/es.po | 12 +- base_import_match/i18n/es_AR.po | 16 +- base_import_match/i18n/es_CL.po | 16 +- base_import_match/i18n/es_CO.po | 16 +- base_import_match/i18n/es_CR.po | 16 +- base_import_match/i18n/es_DO.po | 16 +- base_import_match/i18n/es_EC.po | 16 +- base_import_match/i18n/es_ES.po | 16 +- base_import_match/i18n/es_MX.po | 16 +- base_import_match/i18n/es_PE.po | 16 +- base_import_match/i18n/es_PY.po | 16 +- base_import_match/i18n/es_VE.po | 16 +- base_import_match/i18n/et.po | 13 +- base_import_match/i18n/eu.po | 13 +- base_import_match/i18n/fa.po | 13 +- base_import_match/i18n/fi.po | 13 +- base_import_match/i18n/fr.po | 13 +- base_import_match/i18n/fr_CA.po | 16 +- base_import_match/i18n/fr_CH.po | 16 +- base_import_match/i18n/gl.po | 13 +- base_import_match/i18n/gl_ES.po | 16 +- base_import_match/i18n/he.po | 13 +- base_import_match/i18n/hr.po | 11 +- base_import_match/i18n/hr_HR.po | 19 ++- base_import_match/i18n/hu.po | 13 +- base_import_match/i18n/id.po | 13 +- base_import_match/i18n/it.po | 8 +- base_import_match/i18n/ja.po | 13 +- base_import_match/i18n/ko.po | 13 +- base_import_match/i18n/lt.po | 16 +- base_import_match/i18n/lt_LT.po | 19 ++- base_import_match/i18n/lv.po | 16 +- base_import_match/i18n/mk.po | 13 +- base_import_match/i18n/mn.po | 13 +- base_import_match/i18n/nb.po | 16 +- base_import_match/i18n/nb_NO.po | 16 +- base_import_match/i18n/nl.po | 13 +- base_import_match/i18n/nl_BE.po | 16 +- base_import_match/i18n/nl_NL.po | 11 +- base_import_match/i18n/pl.po | 16 +- base_import_match/i18n/pt.po | 13 +- base_import_match/i18n/pt_BR.po | 16 +- base_import_match/i18n/pt_PT.po | 16 +- base_import_match/i18n/ro.po | 11 +- base_import_match/i18n/ru.po | 17 +- base_import_match/i18n/sk.po | 13 +- base_import_match/i18n/sl.po | 16 +- base_import_match/i18n/sr.po | 16 +- base_import_match/i18n/sr@latin.po | 19 ++- base_import_match/i18n/sv.po | 13 +- base_import_match/i18n/th.po | 13 +- base_import_match/i18n/tr.po | 17 +- base_import_match/i18n/tr_TR.po | 16 +- base_import_match/i18n/uk.po | 16 +- base_import_match/i18n/vi.po | 13 +- base_import_match/i18n/vi_VN.po | 16 +- base_import_match/i18n/zh_CN.po | 16 +- base_import_match/i18n/zh_TW.po | 16 +- 69 files changed, 835 insertions(+), 321 deletions(-) create mode 100644 base_import_match/i18n/base_import_match.pot diff --git a/base_import_match/i18n/am.po b/base_import_match/i18n/am.po index b9ce11d5..750d9622 100644 --- a/base_import_match/i18n/am.po +++ b/base_import_match/i18n/am.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: am\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/ar.po b/base_import_match/i18n/ar.po index 239698b8..bb7cb887 100644 --- a/base_import_match/i18n/ar.po +++ b/base_import_match/i18n/ar.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # SaFi J. , 2016 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: SaFi J. , 2016\n" "Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -98,8 +99,8 @@ msgstr "المعرف" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +163,8 @@ msgstr "الاسم" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "المسلسل" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/base_import_match.pot b/base_import_match/i18n/base_import_match.pot new file mode 100644 index 00000000..6816ab93 --- /dev/null +++ b/base_import_match/i18n/base_import_match.pot @@ -0,0 +1,160 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_import_match +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional +msgid "Conditional" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_uid +msgid "Created by" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_create_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_create_date +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 +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_display_name +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_display_name +msgid "Display Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_conditional +msgid "Enable if you want to use this field only in some conditions." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_field_id +msgid "Field" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_name +msgid "Field Name" +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 +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_field_id +msgid "Field that will be part of an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_ids +msgid "Fields" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_ids +msgid "Fields that will define an unique key." +msgstr "" + +#. module: base_import_match +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Group By" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_id +msgid "ID" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_imported_value +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 +#: model:ir.actions.act_window,name:base_import_match.match_action +#: model:ir.ui.menu,name:base_import_match.match_menu +#: model:ir.ui.view,arch_db:base_import_match.match_form_view +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +#: model:ir.ui.view,arch_db:base_import_match.match_tree_view +msgid "Import Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_imported_value +msgid "Imported value" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,help:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,help:base_import_match.field_base_import_match_model_id +msgid "In this model you will apply the match." +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match___last_update +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field___last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_uid +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_write_date +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_write_date +msgid "Last Updated on" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_match_id +msgid "Match" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_id +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_model_name +#: model:ir.ui.view,arch_db:base_import_match.match_search_view +msgid "Model" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_name +msgid "Name" +msgstr "" + +#. module: base_import_match +#: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence +msgid "Sequence" +msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" + diff --git a/base_import_match/i18n/bg.po b/base_import_match/i18n/bg.po index 684fd6d3..68a65eb1 100644 --- a/base_import_match/i18n/bg.po +++ b/base_import_match/i18n/bg.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Име" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Последователност" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/bs.po b/base_import_match/i18n/bs.po index 56912525..72b1336c 100644 --- a/base_import_match/i18n/bs.po +++ b/base_import_match/i18n/bs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Ime" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sekvenca" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/ca.po b/base_import_match/i18n/ca.po index 2daa6ea8..adf8d0f2 100644 --- a/base_import_match/i18n/ca.po +++ b/base_import_match/i18n/ca.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Marc Tormo i Bochaca , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-04-19 17:59+0000\n" "Last-Translator: Marc Tormo i Bochaca , 2017\n" "Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -98,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" "Si el valor importat no es aquest, el conjunt de regles d'associació ha de " "ser descartat. Aneu amb compte, aquestes dades sempre són tractades com una " @@ -167,3 +167,8 @@ msgstr "Nom" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Seqüència" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/cs.po b/base_import_match/i18n/cs.po index 8042f220..2a1c8e56 100644 --- a/base_import_match/i18n/cs.po +++ b/base_import_match/i18n/cs.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: cs\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Název" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Číselná řada" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/da.po b/base_import_match/i18n/da.po index 9be7c929..eb1af6b5 100644 --- a/base_import_match/i18n/da.po +++ b/base_import_match/i18n/da.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "Id" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Navn" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Rækkefølge" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/de.po b/base_import_match/i18n/de.po index b8c4a674..013443b1 100644 --- a/base_import_match/i18n/de.po +++ b/base_import_match/i18n/de.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Niki Waibel , 2017 # OCA Transbot , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: OCA Transbot , 2017\n" "Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -100,13 +100,13 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" "Wenn der importierte Wert nicht dieser ist, wird die ganze " "Übereinstimmungsregel verworfen. Vorsicht, dieser Wert wird immer als " -"Textstring behandelt und Vergleiche unterscheiden Gross-/Kleinschreibung, so" -" dass Ihr Wert 'True' z.B. nicht mit '1' oder 'true' übereinstimmen wird." +"Textstring behandelt und Vergleiche unterscheiden Gross-/Kleinschreibung, so " +"dass Ihr Wert 'True' z.B. nicht mit '1' oder 'true' übereinstimmen wird." #. module: base_import_match #: model:ir.actions.act_window,name:base_import_match.match_action diff --git a/base_import_match/i18n/el_GR.po b/base_import_match/i18n/el_GR.po index 93975dfe..cf5305f9 100644 --- a/base_import_match/i18n/el_GR.po +++ b/base_import_match/i18n/el_GR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Kostas Goutoudis , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: Kostas Goutoudis , 2016\n" -"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/el_GR/)\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: el_GR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -98,8 +99,8 @@ msgstr "Κωδικός" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +163,8 @@ msgstr "Ονομασία" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Ιεράρχηση" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/en_GB.po b/base_import_match/i18n/en_GB.po index 23db8bc1..72d0f5c9 100644 --- a/base_import_match/i18n/en_GB.po +++ b/base_import_match/i18n/en_GB.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/teams/23907/en_GB/)\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Name" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sequence" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es.po b/base_import_match/i18n/es.po index 7c404942..74708748 100644 --- a/base_import_match/i18n/es.po +++ b/base_import_match/i18n/es.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Pedro M. Baeza , 2017 # OCA Transbot , 2017 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: Fernando Lara , 2017\n" "Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -99,13 +99,13 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" "Si el valor importado no es éste, la regla de concordancia será descartada. " "Tenga cuidado, ya que estos datos siempre serán tratados como una cadena, y " -"la comparación en sensible a las mayúsculas, por lo que si establece 'True'," -" no concordará con '1' ni con 'true'." +"la comparación en sensible a las mayúsculas, por lo que si establece 'True', " +"no concordará con '1' ni con 'true'." #. module: base_import_match #: model:ir.actions.act_window,name:base_import_match.match_action diff --git a/base_import_match/i18n/es_AR.po b/base_import_match/i18n/es_AR.po index 71d33108..8c45cd9f 100644 --- a/base_import_match/i18n/es_AR.po +++ b/base_import_match/i18n/es_AR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/23907/es_AR/)\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_CL.po b/base_import_match/i18n/es_CL.po index a19b2905..d1a5fa14 100644 --- a/base_import_match/i18n/es_CL.po +++ b/base_import_match/i18n/es_CL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/es_CL/)\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID (identificación)" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_CO.po b/base_import_match/i18n/es_CO.po index f158551e..d86bde60 100644 --- a/base_import_match/i18n/es_CO.po +++ b/base_import_match/i18n/es_CO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/es_CO/)\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_CR.po b/base_import_match/i18n/es_CR.po index aa29a5e3..e52c93a3 100644 --- a/base_import_match/i18n/es_CR.po +++ b/base_import_match/i18n/es_CR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/teams/23907/es_CR/)\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_DO.po b/base_import_match/i18n/es_DO.po index bed9d081..3fe42316 100644 --- a/base_import_match/i18n/es_DO.po +++ b/base_import_match/i18n/es_DO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/teams/23907/es_DO/)\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_DO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_EC.po b/base_import_match/i18n/es_EC.po index 28ff428c..620c5fe4 100644 --- a/base_import_match/i18n/es_EC.po +++ b/base_import_match/i18n/es_EC.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/es_EC/)\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_EC\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID (identificación)" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_ES.po b/base_import_match/i18n/es_ES.po index 83fcef02..67f8ce53 100644 --- a/base_import_match/i18n/es_ES.po +++ b/base_import_match/i18n/es_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Fernando Lara , 2017 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2017-02-16 10:39+0000\n" "PO-Revision-Date: 2017-02-16 10:39+0000\n" "Last-Translator: Fernando Lara , 2017\n" -"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/es_ES/)\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -98,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +163,8 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_MX.po b/base_import_match/i18n/es_MX.po index 6ed93288..7e17fd3c 100644 --- a/base_import_match/i18n/es_MX.po +++ b/base_import_match/i18n/es_MX.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/es_MX/)\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_PE.po b/base_import_match/i18n/es_PE.po index 06181b0a..cc7de132 100644 --- a/base_import_match/i18n/es_PE.po +++ b/base_import_match/i18n/es_PE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/es_PE/)\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_PY.po b/base_import_match/i18n/es_PY.po index 3f2d5f08..3d61aa2c 100644 --- a/base_import_match/i18n/es_PY.po +++ b/base_import_match/i18n/es_PY.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/es_PY/)\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_PY\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/es_VE.po b/base_import_match/i18n/es_VE.po index 6601ca8f..89e15760 100644 --- a/base_import_match/i18n/es_VE.po +++ b/base_import_match/i18n/es_VE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/teams/23907/es_VE/)\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: es_VE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nombre" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/et.po b/base_import_match/i18n/et.po index 00dd4872..c561f719 100644 --- a/base_import_match/i18n/et.po +++ b/base_import_match/i18n/et.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Nimi" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Jada" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/eu.po b/base_import_match/i18n/eu.po index ebae05af..506a1ba6 100644 --- a/base_import_match/i18n/eu.po +++ b/base_import_match/i18n/eu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Esther Martín Menéndez , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-02-22 00:48+0000\n" "Last-Translator: Esther Martín Menéndez , 2017\n" "Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -98,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +162,8 @@ msgstr "Izena" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sekuentzia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/fa.po b/base_import_match/i18n/fa.po index 8b2027fc..65f62db8 100644 --- a/base_import_match/i18n/fa.po +++ b/base_import_match/i18n/fa.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "شناسه" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "نام" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "دنباله" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/fi.po b/base_import_match/i18n/fi.po index dde07a0a..3082d708 100644 --- a/base_import_match/i18n/fi.po +++ b/base_import_match/i18n/fi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Jarmo Kortetjärvi , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2017-05-03 07:19+0000\n" "Last-Translator: Jarmo Kortetjärvi , 2017\n" "Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -98,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +162,8 @@ msgstr "Nimi" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Järjestysluku" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/fr.po b/base_import_match/i18n/fr.po index 75a5e997..b998f4fd 100644 --- a/base_import_match/i18n/fr.po +++ b/base_import_match/i18n/fr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # dglucose , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: dglucose , 2016\n" "Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_import_match @@ -98,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +162,8 @@ msgstr "Nom" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Séquence" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/fr_CA.po b/base_import_match/i18n/fr_CA.po index 07b52d62..ce5f42d1 100644 --- a/base_import_match/i18n/fr_CA.po +++ b/base_import_match/i18n/fr_CA.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Martin Malorni , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: Martin Malorni , 2016\n" -"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/fr_CA/)\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_import_match @@ -98,8 +99,8 @@ msgstr "Identifiant" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +163,8 @@ msgstr "Nom" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/fr_CH.po b/base_import_match/i18n/fr_CH.po index 964c0010..41c23afc 100644 --- a/base_import_match/i18n/fr_CH.po +++ b/base_import_match/i18n/fr_CH.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # leemannd , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: leemannd , 2016\n" -"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: fr_CH\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_import_match @@ -98,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +163,8 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/gl.po b/base_import_match/i18n/gl.po index 47064e2b..466230b9 100644 --- a/base_import_match/i18n/gl.po +++ b/base_import_match/i18n/gl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Alejandro Santana , 2016 @@ -14,10 +14,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: César Castro Cruz , 2016\n" "Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -99,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -163,3 +163,8 @@ msgstr "Nome" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Secuencia" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/gl_ES.po b/base_import_match/i18n/gl_ES.po index 8589bffd..76267ece 100644 --- a/base_import_match/i18n/gl_ES.po +++ b/base_import_match/i18n/gl_ES.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/gl_ES/)\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: gl_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/he.po b/base_import_match/i18n/he.po index 9d255e39..dbc0cb6a 100644 --- a/base_import_match/i18n/he.po +++ b/base_import_match/i18n/he.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "מזהה" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "שם" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "רצף" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/hr.po b/base_import_match/i18n/hr.po index 355e39c3..630244de 100644 --- a/base_import_match/i18n/hr.po +++ b/base_import_match/i18n/hr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Goran Kliska , 2017 # OCA Transbot , 2017 @@ -14,11 +14,12 @@ msgstr "" "PO-Revision-Date: 2018-03-02 18:40+0000\n" "Last-Translator: Bole , 2017\n" "Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -99,8 +100,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match diff --git a/base_import_match/i18n/hr_HR.po b/base_import_match/i18n/hr_HR.po index e9890db5..49da3908 100644 --- a/base_import_match/i18n/hr_HR.po +++ b/base_import_match/i18n/hr_HR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Bole , 2016 @@ -12,12 +12,14 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: Bole , 2016\n" -"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/hr_HR/)\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -98,8 +100,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +164,8 @@ msgstr "Naziv" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/hu.po b/base_import_match/i18n/hu.po index 4d23b37d..93216732 100644 --- a/base_import_match/i18n/hu.po +++ b/base_import_match/i18n/hu.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Név" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sorszám" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/id.po b/base_import_match/i18n/id.po index 6c634c99..2e6d3834 100644 --- a/base_import_match/i18n/id.po +++ b/base_import_match/i18n/id.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Nama" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Berurutan" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/it.po b/base_import_match/i18n/it.po index 4dca4d17..eebefae3 100644 --- a/base_import_match/i18n/it.po +++ b/base_import_match/i18n/it.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2017 # Paolo Valier , 2017 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2018-01-06 02:24+0000\n" "Last-Translator: Paolo Valier , 2017\n" "Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -98,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match diff --git a/base_import_match/i18n/ja.po b/base_import_match/i18n/ja.po index bf9d1040..be6d7b73 100644 --- a/base_import_match/i18n/ja.po +++ b/base_import_match/i18n/ja.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "名称" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "付番" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/ko.po b/base_import_match/i18n/ko.po index 7bca7aab..d9c7ba08 100644 --- a/base_import_match/i18n/ko.po +++ b/base_import_match/i18n/ko.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "이름" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "순서" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/lt.po b/base_import_match/i18n/lt.po index 87db9818..813cc03d 100644 --- a/base_import_match/i18n/lt.po +++ b/base_import_match/i18n/lt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Pavadinimas" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Seka" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/lt_LT.po b/base_import_match/i18n/lt_LT.po index 10068bb1..23f3bd69 100644 --- a/base_import_match/i18n/lt_LT.po +++ b/base_import_match/i18n/lt_LT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Arminas Grigonis , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: Arminas Grigonis , 2016\n" -"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/teams/23907/lt_LT/)\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lt_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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +163,8 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/lv.po b/base_import_match/i18n/lv.po index b1ce17c3..1fc4312e 100644 --- a/base_import_match/i18n/lv.po +++ b/base_import_match/i18n/lv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nosaukums" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sērija" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/mk.po b/base_import_match/i18n/mk.po index 77d42da2..97dd7e4a 100644 --- a/base_import_match/i18n/mk.po +++ b/base_import_match/i18n/mk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Име" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Секвенца" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/mn.po b/base_import_match/i18n/mn.po index aec24a83..dc6c08d4 100644 --- a/base_import_match/i18n/mn.po +++ b/base_import_match/i18n/mn.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Нэр" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Дараалал" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/nb.po b/base_import_match/i18n/nb.po index 4f234dd4..1194d27d 100644 --- a/base_import_match/i18n/nb.po +++ b/base_import_match/i18n/nb.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/nb/)\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Navn" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sekvens" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/nb_NO.po b/base_import_match/i18n/nb_NO.po index 3a47076a..1a76d012 100644 --- a/base_import_match/i18n/nb_NO.po +++ b/base_import_match/i18n/nb_NO.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Imre Kristoffer Eilertsen , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: Imre Kristoffer Eilertsen , 2016\n" -"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/nl.po b/base_import_match/i18n/nl.po index 066b23d2..74ffac92 100644 --- a/base_import_match/i18n/nl.po +++ b/base_import_match/i18n/nl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Naam" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Reeks" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/nl_BE.po b/base_import_match/i18n/nl_BE.po index 4f767d59..69cb81fd 100644 --- a/base_import_match/i18n/nl_BE.po +++ b/base_import_match/i18n/nl_BE.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/nl_BE/)\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_BE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Naam:" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Volgorde" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/nl_NL.po b/base_import_match/i18n/nl_NL.po index 82637a55..27428c62 100644 --- a/base_import_match/i18n/nl_NL.po +++ b/base_import_match/i18n/nl_NL.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Peter Hageman , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-12-16 02:17+0000\n" "PO-Revision-Date: 2017-12-16 02:17+0000\n" "Last-Translator: Peter Hageman , 2017\n" -"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/teams/23907/nl_NL/)\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match diff --git a/base_import_match/i18n/pl.po b/base_import_match/i18n/pl.po index 855f8edb..be325aae 100644 --- a/base_import_match/i18n/pl.po +++ b/base_import_match/i18n/pl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nazwa" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Numeracja" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/pt.po b/base_import_match/i18n/pt.po index 4c95af6e..c85ef85c 100644 --- a/base_import_match/i18n/pt.po +++ b/base_import_match/i18n/pt.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Nome" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sequência" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/pt_BR.po b/base_import_match/i18n/pt_BR.po index a5f6406d..a03215f3 100644 --- a/base_import_match/i18n/pt_BR.po +++ b/base_import_match/i18n/pt_BR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/23907/pt_BR/)\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" +"teams/23907/pt_BR/)\n" +"Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "Identificação" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nome" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sequência" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/pt_PT.po b/base_import_match/i18n/pt_PT.po index c6fe3d69..68a95df1 100644 --- a/base_import_match/i18n/pt_PT.po +++ b/base_import_match/i18n/pt_PT.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Nome" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/ro.po b/base_import_match/i18n/ro.po index ce295cc6..d2a88f68 100644 --- a/base_import_match/i18n/ro.po +++ b/base_import_match/i18n/ro.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2017 # Daniel Schweiger , 2017 @@ -13,11 +13,12 @@ msgstr "" "PO-Revision-Date: 2017-12-01 02:10+0000\n" "Last-Translator: Daniel Schweiger , 2017\n" "Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" #. module: base_import_match #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -98,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match diff --git a/base_import_match/i18n/ru.po b/base_import_match/i18n/ru.po index f57ee3dc..4a6b858b 100644 --- a/base_import_match/i18n/ru.po +++ b/base_import_match/i18n/ru.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,13 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +163,8 @@ msgstr "Название" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Последовательность" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/sk.po b/base_import_match/i18n/sk.po index 7a5d3c7d..69966d15 100644 --- a/base_import_match/i18n/sk.po +++ b/base_import_match/i18n/sk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Meno" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Postupnosť" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/sl.po b/base_import_match/i18n/sl.po index ed320967..83bf1109 100644 --- a/base_import_match/i18n/sl.po +++ b/base_import_match/i18n/sl.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"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 " @@ -165,3 +166,8 @@ msgstr "Naziv" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Zaporedje" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/sr.po b/base_import_match/i18n/sr.po index 101064c3..bb333f8e 100644 --- a/base_import_match/i18n/sr.po +++ b/base_import_match/i18n/sr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Ime" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Niz" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/sr@latin.po b/base_import_match/i18n/sr@latin.po index 6fba918f..5a060681 100644 --- a/base_import_match/i18n/sr@latin.po +++ b/base_import_match/i18n/sr@latin.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,12 +11,14 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/sr@latin/)\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +163,8 @@ msgstr "Ime:" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sekvenca" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/sv.po b/base_import_match/i18n/sv.po index d9a4be4d..727ef2ef 100644 --- a/base_import_match/i18n/sv.po +++ b/base_import_match/i18n/sv.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Namn" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Nummerserie" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/th.po b/base_import_match/i18n/th.po index 8f243f2e..d4a8a5c8 100644 --- a/base_import_match/i18n/th.po +++ b/base_import_match/i18n/th.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: th\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "รหัส" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "ชื่อ" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "กำหนดเลขที่เอกสาร" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/tr.po b/base_import_match/i18n/tr.po index 19ffe195..a9e23a58 100644 --- a/base_import_match/i18n/tr.po +++ b/base_import_match/i18n/tr.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Ahmet Altinisik , 2016 @@ -13,10 +13,10 @@ msgstr "" "PO-Revision-Date: 2016-12-29 03:39+0000\n" "Last-Translator: Ahmet Altinisik , 2016\n" "Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. module: base_import_match @@ -99,14 +99,14 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" "Eğer içeri aktarılan değer bu değil ise bütün eşleştirme kuralı dikkate " "alınmayacak. Dikkatli olun, bu alan her zaman bir string olarak " "değerlendirilir, ve karşılaştırma büyük küçük harf duyarlıdır. Mesela alana " -"'True' girmişseniz '1' ile ya da 'true' ile eşleşmeyecektir sadece harf harf" -" aynı olan 'True' ile eşleşir." +"'True' girmişseniz '1' ile ya da 'true' ile eşleşmeyecektir sadece harf harf " +"aynı olan 'True' ile eşleşir." #. module: base_import_match #: model:ir.actions.act_window,name:base_import_match.match_action @@ -168,3 +168,8 @@ msgstr "Adı" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sıra" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/tr_TR.po b/base_import_match/i18n/tr_TR.po index 2ca68028..4ac9dcf4 100644 --- a/base_import_match/i18n/tr_TR.po +++ b/base_import_match/i18n/tr_TR.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # Ozge Altinisik , 2017 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2017-01-07 04:03+0000\n" "PO-Revision-Date: 2017-01-07 04:03+0000\n" "Last-Translator: Ozge Altinisik , 2017\n" -"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/tr_TR/)\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: tr_TR\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "Kimlik" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Ad" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Sıra" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/uk.po b/base_import_match/i18n/uk.po index 9d95d78c..37cb2112 100644 --- a/base_import_match/i18n/uk.po +++ b/base_import_match/i18n/uk.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,11 +12,12 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"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" +"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 #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_field_conditional @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Name" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Послідовність" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/vi.po b/base_import_match/i18n/vi.po index a13ec1e2..39ee506c 100644 --- a/base_import_match/i18n/vi.po +++ b/base_import_match/i18n/vi.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -12,10 +12,10 @@ msgstr "" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" "Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +97,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +161,8 @@ msgstr "Tên" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "Trình tự" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/vi_VN.po b/base_import_match/i18n/vi_VN.po index ab98ce3f..6bc4190a 100644 --- a/base_import_match/i18n/vi_VN.po +++ b/base_import_match/i18n/vi_VN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/teams/23907/vi_VN/)\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: vi_VN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "Tên" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/zh_CN.po b/base_import_match/i18n/zh_CN.po index 23efed8e..34f6f589 100644 --- a/base_import_match/i18n/zh_CN.po +++ b/base_import_match/i18n/zh_CN.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 # Jeffery Chen Fan , 2016 @@ -12,11 +12,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: Jeffery Chen Fan , 2016\n" -"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/zh_CN/)\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -98,8 +99,8 @@ msgstr "ID" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -162,3 +163,8 @@ msgstr "名称" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "序号" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" diff --git a/base_import_match/i18n/zh_TW.po b/base_import_match/i18n/zh_TW.po index 72bbbf2e..0d6211b0 100644 --- a/base_import_match/i18n/zh_TW.po +++ b/base_import_match/i18n/zh_TW.po @@ -1,7 +1,7 @@ # Translation of Odoo Server. # This file contains the translation of the following modules: # * base_import_match -# +# # Translators: # OCA Transbot , 2016 msgid "" @@ -11,11 +11,12 @@ msgstr "" "POT-Creation-Date: 2016-12-23 21:53+0000\n" "PO-Revision-Date: 2016-12-23 21:53+0000\n" "Last-Translator: OCA Transbot , 2016\n" -"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/zh_TW/)\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" -"Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" #. module: base_import_match @@ -97,8 +98,8 @@ msgstr "編號" 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'." +"comparison is case-sensitive so if you set 'True', it will NOT match '1' nor " +"'true', only EXACTLY 'True'." msgstr "" #. module: base_import_match @@ -161,3 +162,8 @@ msgstr "名稱" #: model:ir.model.fields,field_description:base_import_match.field_base_import_match_sequence msgid "Sequence" msgstr "序列" + +#. module: base_import_match +#: model:ir.model,name:base_import_match.model_base +msgid "base" +msgstr "" From deb62c24f59d4be4bb4845b577d58ccb5f179baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=A7al=20Isern?= Date: Sat, 10 Nov 2018 19:46:55 +0100 Subject: [PATCH 10/10] [MIG] [11.0] base_import_match --- base_import_match/README.rst | 3 +- base_import_match/__init__.py | 1 - base_import_match/__manifest__.py | 4 +-- base_import_match/models/__init__.py | 1 - base_import_match/models/base.py | 9 +++-- base_import_match/models/base_import.py | 1 - base_import_match/readme/CONFIGURE.rst | 16 +++++++++ base_import_match/readme/DESCRIPTION.rst | 46 ++++++++++++++++++++++++ base_import_match/readme/ROADMAP.rst | 2 ++ base_import_match/readme/USAGE.rst | 5 +++ base_import_match/tests/__init__.py | 1 - base_import_match/tests/test_import.py | 3 +- 12 files changed, 80 insertions(+), 12 deletions(-) create mode 100644 base_import_match/readme/CONFIGURE.rst create mode 100644 base_import_match/readme/DESCRIPTION.rst create mode 100644 base_import_match/readme/ROADMAP.rst create mode 100644 base_import_match/readme/USAGE.rst diff --git a/base_import_match/README.rst b/base_import_match/README.rst index c11ff80b..b3bdf41a 100644 --- a/base_import_match/README.rst +++ b/base_import_match/README.rst @@ -84,7 +84,7 @@ To use this module, you need to: .. 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/10.0 + :target: https://runbot.odoo-community.org/runbot/149/11.0 Known Issues / Roadmap ====================== @@ -108,6 +108,7 @@ Contributors * Jairo Llopis * Vicent Cubells +* Marçal Isern Maintainer ---------- diff --git a/base_import_match/__init__.py b/base_import_match/__init__.py index 197214cd..4724f5f1 100644 --- a/base_import_match/__init__.py +++ b/base_import_match/__init__.py @@ -1,4 +1,3 @@ -# -*- 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). diff --git a/base_import_match/__manifest__.py b/base_import_match/__manifest__.py index a9068280..99359c3a 100644 --- a/base_import_match/__manifest__.py +++ b/base_import_match/__manifest__.py @@ -1,11 +1,11 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Grupo ESOC Ingeniería de Servicios, S.L.U. - Jairo Llopis # Copyright 2016 Tecnativa - Vicent Cubells +# Copyright 2018 QubiQ - Marçal Isern # 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": "10.0.1.0.0", + "version": "11.0.1.0.0", "category": "Tools", "website": "https://tecnativa.com", "author": "Grupo ESOC Ingeniería de Servicios," diff --git a/base_import_match/models/__init__.py b/base_import_match/models/__init__.py index 45ac4f35..09759b3a 100644 --- a/base_import_match/models/__init__.py +++ b/base_import_match/models/__init__.py @@ -1,4 +1,3 @@ -# -*- 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). diff --git a/base_import_match/models/base.py b/base_import_match/models/base.py index 62dff40b..55bb21c0 100644 --- a/base_import_match/models/base.py +++ b/base_import_match/models/base.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2017 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from odoo import api, models @@ -20,7 +19,8 @@ class Base(models.AbstractModel): if self.env["base_import.match"]._usable_rules(self._name, fields): newdata = list() # Data conversion to ORM format - import_fields = map(models.fix_import_export_id_paths, fields) + import_fields = list( + 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 @@ -44,7 +44,10 @@ class Base(models.AbstractModel): 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() + # To generate externals IDS. + match.export_data(fields) + ext_id = match.get_external_id() + row["id"] = (ext_id[match.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)) diff --git a/base_import_match/models/base_import.py b/base_import_match/models/base_import.py index 9350ce5a..e23ffd7d 100644 --- a/base_import_match/models/base_import.py +++ b/base_import_match/models/base_import.py @@ -1,4 +1,3 @@ -# -*- 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). diff --git a/base_import_match/readme/CONFIGURE.rst b/base_import_match/readme/CONFIGURE.rst new file mode 100644 index 00000000..371f3219 --- /dev/null +++ b/base_import_match/readme/CONFIGURE.rst @@ -0,0 +1,16 @@ +To configure this module, you need to: + +#. Go to *Settings > Technical > Database Structure > Import Match*. +#. *Create*. +#. Choose a *Model*. +#. Choose the *Fields* that conform a 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. \ No newline at end of file diff --git a/base_import_match/readme/DESCRIPTION.rst b/base_import_match/readme/DESCRIPTION.rst new file mode 100644 index 00000000..ef757f8d --- /dev/null +++ b/base_import_match/readme/DESCRIPTION.rst @@ -0,0 +1,46 @@ +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. \ No newline at end of file diff --git a/base_import_match/readme/ROADMAP.rst b/base_import_match/readme/ROADMAP.rst new file mode 100644 index 00000000..7a0de732 --- /dev/null +++ b/base_import_match/readme/ROADMAP.rst @@ -0,0 +1,2 @@ +* Add a setting to throw an error when multiple matches are found, instead of + falling back to creation of new record. \ No newline at end of file diff --git a/base_import_match/readme/USAGE.rst b/base_import_match/readme/USAGE.rst new file mode 100644 index 00000000..301d01a2 --- /dev/null +++ b/base_import_match/readme/USAGE.rst @@ -0,0 +1,5 @@ +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. \ No newline at end of file diff --git a/base_import_match/tests/__init__.py b/base_import_match/tests/__init__.py index 1d8b5f1b..ff1f96e7 100644 --- a/base_import_match/tests/__init__.py +++ b/base_import_match/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- 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). diff --git a/base_import_match/tests/test_import.py b/base_import_match/tests/test_import.py index b7d977fa..eb344f79 100644 --- a/base_import_match/tests/test_import.py +++ b/base_import_match/tests/test_import.py @@ -1,4 +1,3 @@ -# -*- 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). @@ -32,7 +31,7 @@ class ImportCase(TransactionCase): agrolait.vat = "BE0477472701" record = self._base_import_record("res.partner", "res_partner_vat") record.do(["name", "vat", "is_company"], OPTIONS) - agrolait.env.invalidate_all() + agrolait.env.clear() self.assertEqual(agrolait.name, "Agrolait Changed") def test_res_partner_parent_name_is_company(self):