UBL Integration
							parent
							
								
									cc676c3f06
								
							
						
					
					
						commit
						656610cc6e
					
				|  | @ -0,0 +1,50 @@ | ||||||
|  | .. image:: https://img.shields.io/badge/license-AGPL--3-blue.png | ||||||
|  |    :target: https://www.gnu.org/licenses/agpl | ||||||
|  |    :alt: License: AGPL-3 | ||||||
|  | 
 | ||||||
|  | ================== | ||||||
|  | Base VAT Sanitized | ||||||
|  | ================== | ||||||
|  | 
 | ||||||
|  | This module adds a technical field *sanitized_vat* on partners that stores the VAT number without spaces and with letters in uppercase. It is useful for other modules that need to match partners on VAT number, such as the *base_business_document_import* module for example. | ||||||
|  | 
 | ||||||
|  | Usage | ||||||
|  | ===== | ||||||
|  | 
 | ||||||
|  | This module doesn't bring any visible feature for the users. | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas | ||||||
|  |    :alt: Try me on Runbot | ||||||
|  |    :target: https://runbot.odoo-community.org/runbot/134/11.0 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | Bug Tracker | ||||||
|  | =========== | ||||||
|  | 
 | ||||||
|  | Bugs are tracked on `GitHub Issues | ||||||
|  | <https://github.com/OCA/partner-contact/issues>`_. In case of trouble, please | ||||||
|  | check there if your issue has already been reported. If you spotted it first, | ||||||
|  | help us smash it by providing detailed and welcomed feedback. | ||||||
|  | 
 | ||||||
|  | Credits | ||||||
|  | ======= | ||||||
|  | 
 | ||||||
|  | Contributors | ||||||
|  | ------------ | ||||||
|  | 
 | ||||||
|  | * Alexis de Lattre <alexis.delattre@akretion.com> | ||||||
|  | 
 | ||||||
|  | Maintainer | ||||||
|  | ---------- | ||||||
|  | 
 | ||||||
|  | .. image:: https://odoo-community.org/logo.png | ||||||
|  |    :alt: Odoo Community Association | ||||||
|  |    :target: https://odoo-community.org | ||||||
|  | 
 | ||||||
|  | This module is maintained by the OCA. | ||||||
|  | 
 | ||||||
|  | OCA, or the Odoo Community Association, is a nonprofit organization whose | ||||||
|  | mission is to support the collaborative development of Odoo features and | ||||||
|  | promote its widespread use. | ||||||
|  | 
 | ||||||
|  | To contribute to this module, please visit https://odoo-community.org. | ||||||
|  | @ -0,0 +1,3 @@ | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from . import models | ||||||
|  | @ -0,0 +1,15 @@ | ||||||
|  | # Copyright 2016 Akretion (http://www.akretion.com) | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | # @author Alexis de Lattre <alexis.delattre@akretion.com> | ||||||
|  | 
 | ||||||
|  | { | ||||||
|  |     'name': 'Base VAT Sanitized', | ||||||
|  |     'version': '11.0.1.0.0', | ||||||
|  |     'category': 'Hidden/Dependency', | ||||||
|  |     'license': 'AGPL-3', | ||||||
|  |     'summary': 'Adds field sanitized_vat on partners', | ||||||
|  |     'author': 'Akretion,Odoo Community Association (OCA)', | ||||||
|  |     'website': 'https://github.com/OCA/partner-contact', | ||||||
|  |     'depends': ['base_vat'], | ||||||
|  |     'installable': True, | ||||||
|  | } | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "ተባባሪ" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "الشريك" | ||||||
|  | @ -0,0 +1,32 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | #	* base_vat_sanitized | ||||||
|  | # | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Партньор" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Empresa" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Společník" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,37 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-08-22 13:19+0000\n" | ||||||
|  | "Last-Translator: Rudolf Schnapka <rs@techno-flex.de>\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=n != 1;\n" | ||||||
|  | "X-Generator: Weblate 3.1.1\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Kontakt" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "Bereinigte USt-ID" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "USt-ID in Grossbuchstaben ohne Leer- und Sonderzeichen." | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "el_GR/)\n" | ||||||
|  | "Language: el_GR\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Συνεργάτης" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/en_GB/)\n" | ||||||
|  | "Language: en_GB\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,36 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Contacto" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/es_CR/)\n" | ||||||
|  | "Language: es_CR\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Empresa" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "es_EC/)\n" | ||||||
|  | "Language: es_EC\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Empresa" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "es_MX/)\n" | ||||||
|  | "Language: es_MX\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Empresa" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/es_VE/)\n" | ||||||
|  | "Language: es_VE\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Empresa" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Kidea" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Kumppani" | ||||||
|  | @ -0,0 +1,37 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | # Quentin THEURET <odoo@kerpeo.com>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "Last-Translator: Quentin THEURET <odoo@kerpeo.com>, 2018\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Contact" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "TIN aseptisé" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "TIN en lettres capitales sans espaces ni caractères spéciaux." | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "fr_CA/)\n" | ||||||
|  | "Language: fr_CA\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partenaire" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: French (Switzerland) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/fr_CH/)\n" | ||||||
|  | "Language: fr_CH\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partenaire" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Empresa" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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" | ||||||
|  | "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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,38 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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" | ||||||
|  | "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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Kontakt" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "Uređeni porezni broj" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "Porezni broj velikim slovima i bez razmaka ili specijanih znakova" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,36 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Contatto" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "パートナ" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partneris" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " | ||||||
|  | "2);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partneris" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Партнер" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Харилцагч" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "nb/)\n" | ||||||
|  | "Language: nb\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/nb_NO/)\n" | ||||||
|  | "Language: nb_NO\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,36 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Contact" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "nl_BE/)\n" | ||||||
|  | "Language: nl_BE\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Relatie" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Peter Hageman <hageman.p@gmail.com>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-06-10 01:50+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-06-10 01:50+0000\n" | ||||||
|  | "Last-Translator: Peter Hageman <hageman.p@gmail.com>, 2017\n" | ||||||
|  | "Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/nl_NL/)\n" | ||||||
|  | "Language: nl_NL\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Relatie" | ||||||
|  | @ -0,0 +1,41 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n" | ||||||
|  | "%100<12 || n%100>=14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n" | ||||||
|  | "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Tiago Baptista <tiago@baptista.net>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: Tiago Baptista <tiago@baptista.net>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Parceiro" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/pt_BR/)\n" | ||||||
|  | "Language: pt_BR\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Parceiro" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # Tiago Baptista <tiago@baptista.net>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-02-25 04:13+0000\n" | ||||||
|  | "Last-Translator: Tiago Baptista <tiago@baptista.net>, 2017\n" | ||||||
|  | "Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" | ||||||
|  | "teams/23907/pt_PT/)\n" | ||||||
|  | "Language: pt_PT\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Parceiro" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 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" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" | ||||||
|  | "2:1));\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partener" | ||||||
|  | @ -0,0 +1,41 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Контрагент" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,37 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2018 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 11.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "PO-Revision-Date: 2018-01-31 03:43+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2018\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" | ||||||
|  | "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" | ||||||
|  | "%100==4 ? 2 : 3);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "Stik" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "Prečiščena ID za DDV" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "ID za DDV z velikimi črkami brez presledkov ali posebnih znakov." | ||||||
|  | @ -0,0 +1,41 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "sr@latin/)\n" | ||||||
|  | "Language: sr@latin\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \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_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Partner" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n != 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Företag" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "พาร์ทเนอร์" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=2; plural=(n > 1);\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "İş Ortağı" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "tr_TR/)\n" | ||||||
|  | "Language: tr_TR\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Ortak" | ||||||
|  | @ -0,0 +1,39 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\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" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "Đối tác" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "zh_CN/)\n" | ||||||
|  | "Language: zh_CN\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "业务伙伴" | ||||||
|  | @ -0,0 +1,40 @@ | ||||||
|  | # Translation of Odoo Server. | ||||||
|  | # This file contains the translation of the following modules: | ||||||
|  | # * base_vat_sanitized | ||||||
|  | # | ||||||
|  | # Translators: | ||||||
|  | # OCA Transbot <transbot@odoo-community.org>, 2017 | ||||||
|  | msgid "" | ||||||
|  | msgstr "" | ||||||
|  | "Project-Id-Version: Odoo Server 10.0\n" | ||||||
|  | "Report-Msgid-Bugs-To: \n" | ||||||
|  | "POT-Creation-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "PO-Revision-Date: 2017-03-10 03:39+0000\n" | ||||||
|  | "Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n" | ||||||
|  | "Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" | ||||||
|  | "zh_TW/)\n" | ||||||
|  | "Language: zh_TW\n" | ||||||
|  | "MIME-Version: 1.0\n" | ||||||
|  | "Content-Type: text/plain; charset=UTF-8\n" | ||||||
|  | "Content-Transfer-Encoding: \n" | ||||||
|  | "Plural-Forms: nplurals=1; plural=0;\n" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model,name:base_vat_sanitized.model_res_partner | ||||||
|  | msgid "Contact" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,field_description:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "Sanitized TIN" | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #. module: base_vat_sanitized | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_partner_sanitized_vat | ||||||
|  | #: model:ir.model.fields,help:base_vat_sanitized.field_res_users_sanitized_vat | ||||||
|  | msgid "TIN in uppercase without spaces nor special caracters." | ||||||
|  | msgstr "" | ||||||
|  | 
 | ||||||
|  | #~ msgid "Partner" | ||||||
|  | #~ msgstr "夥伴" | ||||||
|  | @ -0,0 +1,3 @@ | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from . import res_partner | ||||||
|  | @ -0,0 +1,25 @@ | ||||||
|  | # Copyright 2016 Akretion (http://www.akretion.com) | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | # @author Alexis de Lattre <alexis.delattre@akretion.com> | ||||||
|  | 
 | ||||||
|  | import re | ||||||
|  | 
 | ||||||
|  | from odoo import api, fields, models | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class ResPartner(models.Model): | ||||||
|  |     _inherit = 'res.partner' | ||||||
|  | 
 | ||||||
|  |     sanitized_vat = fields.Char( | ||||||
|  |         compute='_compute_sanitized_vat', string='Sanitized TIN', | ||||||
|  |         store=True, readonly=True, | ||||||
|  |         help='TIN in uppercase without spaces nor special caracters.') | ||||||
|  | 
 | ||||||
|  |     @classmethod | ||||||
|  |     def _sanitize_vat(self, vat): | ||||||
|  |         return vat and re.sub(r'\W+', '', vat).upper() or False | ||||||
|  | 
 | ||||||
|  |     @api.depends('vat') | ||||||
|  |     def _compute_sanitized_vat(self): | ||||||
|  |         for partner in self: | ||||||
|  |             partner.sanitized_vat = self._sanitize_vat(partner.vat) | ||||||
										
											Binary file not shown.
										
									
								
							| After Width: | Height: | Size: 9.2 KiB | 
|  | @ -0,0 +1,3 @@ | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | 
 | ||||||
|  | from . import test_vat | ||||||
|  | @ -0,0 +1,19 @@ | ||||||
|  | # Copyright 2016 Akretion (http://www.akretion.com) | ||||||
|  | # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||||||
|  | # @author Alexis de Lattre <alexis.delattre@akretion.com> | ||||||
|  | 
 | ||||||
|  | from odoo.tests.common import TransactionCase | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | class TestVatSanitized(TransactionCase): | ||||||
|  | 
 | ||||||
|  |     def test_vat_sanitized(self): | ||||||
|  |         ldlc = self.env['res.partner'].create({ | ||||||
|  |             'name': 'LDLC', | ||||||
|  |             'is_company': True, | ||||||
|  |             'vat': 'fr 26 403 554 181' | ||||||
|  |             }) | ||||||
|  |         self.assertEqual(ldlc.sanitized_vat, 'FR26403554181') | ||||||
|  |         # Also test invalidation | ||||||
|  |         ldlc.vat = False | ||||||
|  |         self.assertEqual(ldlc.sanitized_vat, False) | ||||||
		Loading…
	
		Reference in New Issue