diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/base_vat | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/base_vat')
91 files changed, 8750 insertions, 0 deletions
diff --git a/addons/base_vat/__init__.py b/addons/base_vat/__init__.py new file mode 100644 index 00000000..dc5e6b69 --- /dev/null +++ b/addons/base_vat/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/addons/base_vat/__manifest__.py b/addons/base_vat/__manifest__.py new file mode 100644 index 00000000..42f3172a --- /dev/null +++ b/addons/base_vat/__manifest__.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'VAT Number Validation', + 'version': '1.0', + 'category': 'Accounting/Accounting', + 'description': """ +VAT validation for Partner's VAT numbers. +========================================= + +After installing this module, values entered in the VAT field of Partners will +be validated for all supported countries. The country is inferred from the +2-letter country code that prefixes the VAT number, e.g. ``BE0477472701`` +will be validated using the Belgian rules. + +There are two different levels of VAT number validation: +-------------------------------------------------------- + * By default, a simple off-line check is performed using the known validation + rules for the country, usually a simple check digit. This is quick and + always available, but allows numbers that are perhaps not truly allocated, + or not valid anymore. + + * When the "VAT VIES Check" option is enabled (in the configuration of the user's + Company), VAT numbers will be instead submitted to the online EU VIES + database, which will truly verify that the number is valid and currently + allocated to a EU company. This is a little bit slower than the simple + off-line check, requires an Internet connection, and may not be available + all the time. If the service is not available or does not support the + requested country (e.g. for non-EU countries), a simple check will be performed + instead. + +Supported countries currently include EU countries, and a few non-EU countries +such as Chile, Colombia, Mexico, Norway or Russia. For unsupported countries, +only the country code will be validated. + """, + 'depends': ['account'], + 'data': [ + 'views/res_company_views.xml', + 'views/res_partner_views.xml', + 'views/res_config_settings_views.xml', + ], + 'license': 'LGPL-3', +} diff --git a/addons/base_vat/i18n/af.po b/addons/base_vat/i18n/af.po new file mode 100644 index 00000000..3e6bfb2b --- /dev/null +++ b/addons/base_vat/i18n/af.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +# Andre de Kock <adekock11@gmail.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Andre de Kock <adekock11@gmail.com>, 2017\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Maatskappye" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontak" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "res.config.settings" diff --git a/addons/base_vat/i18n/am.po b/addons/base_vat/i18n/am.po new file mode 100644 index 00000000..fbc1007f --- /dev/null +++ b/addons/base_vat/i18n/am.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "ድርጅት" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po new file mode 100644 index 00000000..67f9b186 --- /dev/null +++ b/addons/base_vat/i18n/ar.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# amrnegm <amrnegm.01@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"القيم المحددة هنا تنطبق على " +"المؤسسة الحالية فقط.\" aria-label=\"القيم المحددة هنا تنطبق على المؤسسة " +"الحالية فقط.\" groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "شركات" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الاعدادات" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "جهة الاتصال" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "المُعرف" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"إذا تم تحديد هذا المربع، لن تتمكن من حفظ جهة اتصال إن لم يمكن التحقق من رقم " +"قيمة الضريبة المضافة الخاصة بها بخدمة VIES الأوروبية." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ضريبة القيمة المضافة" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "التحقق من أرقام قيمة الضريبة المضافة" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "التحقق من أرقام قيمة الضريبة المضافة بخدمة VIES الأوروبية" diff --git a/addons/base_vat/i18n/az.po b/addons/base_vat/i18n/az.po new file mode 100644 index 00000000..9e15bee8 --- /dev/null +++ b/addons/base_vat/i18n/az.po @@ -0,0 +1,72 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:16+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:154 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:153 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/base_vat.pot b/addons/base_vat/i18n/base_vat.pot new file mode 100644 index 00000000..b2625138 --- /dev/null +++ b/addons/base_vat/i18n/base_vat.pot @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-01 07:28+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po new file mode 100644 index 00000000..7c0eb53d --- /dev/null +++ b/addons/base_vat/i18n/bg.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020 +# Igor Sheludko <igor.sheludko@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# TIhomir Nikolov <whltd.03@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: TIhomir Nikolov <whltd.03@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурация" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Контакт" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Ако това поле е отметнато, няма да можете да запазите контакт, ако неговият " +"ДДС номер не може да бъде потвърден от европейската услуга VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ДДС" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Проверете номера по ДДС" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Проверете номерата по ДДС чрез европейската услуга VIES" diff --git a/addons/base_vat/i18n/bn.po b/addons/base_vat/i18n/bn.po new file mode 100644 index 00000000..c87ee18f --- /dev/null +++ b/addons/base_vat/i18n/bn.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "কোম্পানি সমূহ " + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "রূপরেখা নির্ধারণ" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "যোগাযোগ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "আইডি " + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po new file mode 100644 index 00000000..ce673c9a --- /dev/null +++ b/addons/base_vat/i18n/bs.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:154 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:153 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "PDV" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po new file mode 100644 index 00000000..d60b93c0 --- /dev/null +++ b/addons/base_vat/i18n/ca.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# M Palau <mpalau@tda.ad>, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Empreses" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contacte" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "CIF/NIF" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/ckb.po b/addons/base_vat/i18n/ckb.po new file mode 100644 index 00000000..010f7c3c --- /dev/null +++ b/addons/base_vat/i18n/ckb.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "کۆمپانیاکان" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "شێوەپێدانی ڕێکخستنەکان" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "پەیوەندی" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ناسنامە" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po new file mode 100644 index 00000000..9430b10c --- /dev/null +++ b/addons/base_vat/i18n/cs.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Jiří Podhorecký, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">DIČ</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Společnosti" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Je-li toto zaškrtávací políčko zaškrtnuto, nebudete moci kontakt uložit, " +"pokud jeho identifikační číslo DPH nemůže ověřit evropská služba VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Číslo DPH [%(vat)s] pre partnera [%(name)s] sa nezdá byť platný.\n" +"Poznámka: očakávaný formát je %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"DPH číslo [%(vat)s] pre partnera [%(name)s] buď neprešiel kontrolou " +"platnosti VIES DPH alebo nerešpektoval očakávaný formát %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "DIČ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Ověrení DIČ" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Ověření DPH prostřednictvím evropské služby VIES" diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po new file mode 100644 index 00000000..1886c2c5 --- /dev/null +++ b/addons/base_vat/i18n/da.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">Moms</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Virksomheder" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Hvis denne box er afkrydset, kan du ikke gemme en kontakt, hvis dens CVR " +"nummer ikke kan bekræftes af European VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Momsnummer [%(vat)s] for partner [%(name)s] ser ikke ud til at være gyldigt. \n" +"Bemærk: Det forventede format er %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"Moms nummeret [%(vat)s] for partneren [%(name)s] fejlede enten VIES moms " +"valideringen eller understøtter ikke det forventede format %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "Moms" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Bekræft CVR nummer" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Bekræft CVR numre ved hjælp af European VIES" diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po new file mode 100644 index 00000000..70054881 --- /dev/null +++ b/addons/base_vat/i18n/de.po @@ -0,0 +1,124 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Leon Grill <leg@odoo.com>, 2020 +# EugenBrodskiSAMSAIT <eugen.brodski@samsa-it.de>, 2021 +# Chris Egal <sodaswed@web.de>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Chris Egal <sodaswed@web.de>, 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">MWST.</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration " + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Wenn dieses Kontrollkästchen angekreuzt ist, können Sie einen Kontakt nur " +"dann speichern, wenn die MwSt-Nummer über das MwSt-" +"Informationsaustauschsystem der Europäischen Kommission überprüft werden " +"kann." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Die Umsatzsteuernummer [%(vat)s] für Partner [%(name)s] scheint nicht gültig zu sein. \n" +"Hinweis: Das erwartete Format ist %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"Die UStID Nummer [%(vat)s] des Partners [%(name)s] weicht entweder vom " +"erwarteten Format %(format)s ab oder sie konnte nicht erfolgreich durch die " +"VIES VAT Prüfung validiert werden." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "USt.-ID" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "MwSt-Identifikationsnr. überprüfen" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "MwSt-Identifikationsnr. mit dem europäischen VIES-Service überprüfen" diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po new file mode 100644 index 00000000..abb708b7 --- /dev/null +++ b/addons/base_vat/i18n/el.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# George Tarasidis <george_tarasidis@yahoo.com>, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Εταιρίες" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Ρυθμίσεις διαμόρφωσης" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Επαφή" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "Κωδικός" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ΦΠΑ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Επαληθεύστε τους αριθμούς ΑΦΜ" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" +"Επαληθεύστε τους αριθμούς ΑΦΜ που χρησιμοποιούν την Ευρωπαϊκή VIES υπηρεσία" diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po new file mode 100644 index 00000000..455d43f4 --- /dev/null +++ b/addons/base_vat/i18n/en_GB.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Companies" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/eo.po b/addons/base_vat/i18n/eo.po new file mode 100644 index 00000000..a109cf9f --- /dev/null +++ b/addons/base_vat/i18n/eo.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po new file mode 100644 index 00000000..52670265 --- /dev/null +++ b/addons/base_vat/i18n/es.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">IVA</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "Identificación" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Si esta casilla de verificación se encuentra seleccionada, no podrás guardar" +" un contacto si IVA no es valido para el servicio Europeo VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"El número de IVA [%(vat)s]para el socio [%(name)s] parece no ser válido. \n" +"Nota: el formato esperado es %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"El número de IVA [%(vat)s] para el socio [%(name)s] no pasó la verificación " +"de validación de IVA VIES o no tiene el formato esperado%(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "IVA" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Verificar IVA" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Verificar IVA con el servicio europeo VIES" diff --git a/addons/base_vat/i18n/es_BO.po b/addons/base_vat/i18n/es_BO.po new file mode 100644 index 00000000..8b8f5e47 --- /dev/null +++ b/addons/base_vat/i18n/es_BO.po @@ -0,0 +1,58 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/" +"es_BO/)\n" +"Language: es_BO\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 +#: code:addons/base_vat/models/res_partner.py:188 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" +"El NIT [%s] para la empresa [%s] no parece ser válido.\n" +"Nota: el formato esperado es %s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:187 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" +"El NIT [%s] para la empresa [%s] o bien falla en la comprobación de " +"validación VIES o no respeta el formato esperado %s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "NIT" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Verificar números NIT" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Verificar números NIT usando el servicio VIES" diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po new file mode 100644 index 00000000..6cdb014d --- /dev/null +++ b/addons/base_vat/i18n/es_CL.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_CO.po b/addons/base_vat/i18n/es_CO.po new file mode 100644 index 00000000..30b2db74 --- /dev/null +++ b/addons/base_vat/i18n/es_CO.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po new file mode 100644 index 00000000..563e2240 --- /dev/null +++ b/addons/base_vat/i18n/es_CR.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_DO.po b/addons/base_vat/i18n/es_DO.po new file mode 100644 index 00000000..d398863e --- /dev/null +++ b/addons/base_vat/i18n/es_DO.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po new file mode 100644 index 00000000..57981d35 --- /dev/null +++ b/addons/base_vat/i18n/es_EC.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po new file mode 100644 index 00000000..7b5ff60c --- /dev/null +++ b/addons/base_vat/i18n/es_MX.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Lucia Pacheco <lpo@odoo.com>, 2021 +# Braulio D. López Vázquez <bdl@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Braulio D. López Vázquez <bdl@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">RFC</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "Identificación" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Si esta casilla de verificación se encuentra seleccionada, no podrá guardar " +"un contacto si el NIF no es valido para el servicio Europeo VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Parece que el RFC [%(vat)s] del partner [%(name)s] no es válido. \n" +"Nota: el formato esperado es %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"El RFC [%(vat)s] del partner [%(name)s] no pasó la verificación de " +"validación del NIF VIES o no tiene el formato esperado%(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "RFC" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Verificar RFC" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Verificar NIF con el servicio europeo VIES" diff --git a/addons/base_vat/i18n/es_PE.po b/addons/base_vat/i18n/es_PE.po new file mode 100644 index 00000000..2d05f627 --- /dev/null +++ b/addons/base_vat/i18n/es_PE.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañias" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po new file mode 100644 index 00000000..a23cf4c3 --- /dev/null +++ b/addons/base_vat/i18n/es_PY.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/es_VE.po b/addons/base_vat/i18n/es_VE.po new file mode 100644 index 00000000..7595b4c6 --- /dev/null +++ b/addons/base_vat/i18n/es_VE.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po new file mode 100644 index 00000000..7883e88a --- /dev/null +++ b/addons/base_vat/i18n/et.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# atriine <triine@avalah.ee>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: atriine <triine@avalah.ee>, 2020\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Ettevõtted" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Kui selles ruudus on linnukene, siis sa ei saa salvestada kontakti juhul kui" +" tema käibemaksukohustuslase numbrit ei saa kinnitada Euroopa " +"käibemaksualase teabe vahetamise süsteem VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "KMKR nr" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Kinnitage KM number" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Kinnitage KM number, kasutades Euroopa VIES teenust" diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po new file mode 100644 index 00000000..1a58afec --- /dev/null +++ b/addons/base_vat/i18n/eu.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# iaranburu <iaranburu@binovo.es>, 2021 +# Miren Maiz <mirenmaizz@gmail.com>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# Unai Muñoz <unaimunoz9@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Unai Muñoz <unaimunoz9@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Enpresak" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontaktua" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "IFZ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Egiaztatu VAT zenbakiak" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po new file mode 100644 index 00000000..c68c0389 --- /dev/null +++ b/addons/base_vat/i18n/fa.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# saeed raesi <saeed.raesi2020@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: saeed raesi <saeed.raesi2020@gmail.com>, 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"مقادیر ست شده در اینجا خاص " +"شرکت هستند.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">مالیات بر ارزش افزوده</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "شرکتها" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "مخاطب" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "شناسه" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"اگر این کادر تأیید شود ، اگر شماره مالیات بر ارزش افزوده آن توسط سرویس VIES " +"اروپا قابل تأیید نباشد ، نمی توانید مخاطب را ذخیره کنید." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"به نظر نمی رسد شماره مالیات بر ارزش افزوده [%(vat)s] برای همکار [%(name)s] معتبر باشد. \n" +"توجه: قالب مورد انتظار %(format)s است" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"شماره مالیات بر ارزش افزوده[%(vat)s] برای شریک[%(name)s] یا در بررسی اعتبار " +"سنجی مالیات بر ارزش افزوده VIES ناموفق بود یا در قالب مورد انتظار %(format)s" +" نمی باشد." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ارزش افزوده" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "شماره مالیات بر ارزش افزوده را تأیید کنید" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" +"با استفاده از خدمات اروپایی VIES ، شماره مالیات بر ارزش افزوده را تأیید کنید" diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po new file mode 100644 index 00000000..314a35bd --- /dev/null +++ b/addons/base_vat/i18n/fi.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Kim Asplund <kim.asplund@gmail.com>, 2020 +# Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">ALV</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Yritykset" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakti" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Jos tämä valintaruutu on valittu, et voi tallentaa yhteystietoa, jos " +"European VIES -palvelu ei voi tarkistaa sen alv-numeroa." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ALV" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Varmista ALV-numerot" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Varmista ALV-numerot eurooppalaisen VIES-palvelun avulla" diff --git a/addons/base_vat/i18n/fo.po b/addons/base_vat/i18n/fo.po new file mode 100644 index 00000000..b2d7c51d --- /dev/null +++ b/addons/base_vat/i18n/fo.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Fyritøkur" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po new file mode 100644 index 00000000..2431bb29 --- /dev/null +++ b/addons/base_vat/i18n/fr.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Gilles Mangin <gilles.mangin@phidias.fr>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Les valeurs définies ici sont" +" spécifiques à l'entreprise.\" aria-label=\"Les valeurs définies ici sont " +"spécifiques à l'entreprise.\" groups=\"base.group_multi_company\" " +"role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">TVA</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contact" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Si cette case est cochée, vous ne pourrez pas enregistrer un contact si son " +"numéro de TVA ne peut pas être vérifié par le service européen VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "TVA" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Vérifier les numéros TVA" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Vérifier les numéros TVA en utilisant le service européen VIES" diff --git a/addons/base_vat/i18n/fr_BE.po b/addons/base_vat/i18n/fr_BE.po new file mode 100644 index 00000000..722c8386 --- /dev/null +++ b/addons/base_vat/i18n/fr_BE.po @@ -0,0 +1,62 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-07 16:40+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_BE/)\n" +"Language: fr_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 +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,help:base_vat.field_res_company_vat_check_vies +msgid "" +"If checked, Partners VAT numbers will be fully validated against EU's VIES " +"service rather than via a simple format validation (checksum)." +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Partner" +msgstr "Partenaire" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:128 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:127 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +msgid "VIES VAT Check" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "e.g. BE0477472701" +msgstr "" diff --git a/addons/base_vat/i18n/fr_CA.po b/addons/base_vat/i18n/fr_CA.po new file mode 100644 index 00000000..8935b47d --- /dev/null +++ b/addons/base_vat/i18n/fr_CA.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po new file mode 100644 index 00000000..598b2647 --- /dev/null +++ b/addons/base_vat/i18n/gl.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po new file mode 100644 index 00000000..40538620 --- /dev/null +++ b/addons/base_vat/i18n/gu.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2018 +# Dharmraj Jhala <dja@openerp.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Dharmraj Jhala <dja@openerp.com>, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "કંપનીઓ" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "સંપર્ક" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:154 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:153 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/he.po b/addons/base_vat/i18n/he.po new file mode 100644 index 00000000..3d61ca7c --- /dev/null +++ b/addons/base_vat/i18n/he.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">מע\"מ</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "חברות" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "צור קשר" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "מזהה" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"אם תיבת סימון זו מסומנת, לא תוכל לשמור איש קשר אם לא ניתן לאמת את מספר " +"המע\"מ שלו על ידי שירות ה- VIES האירופי." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "מע\"מ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "אימות מספרי מע\"מ" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "אמת את מספרי המע\"מ באמצעות שירות VIES האירופי" diff --git a/addons/base_vat/i18n/hi.po b/addons/base_vat/i18n/hi.po new file mode 100644 index 00000000..66940b66 --- /dev/null +++ b/addons/base_vat/i18n/hi.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po new file mode 100644 index 00000000..40e0b419 --- /dev/null +++ b/addons/base_vat/i18n/hr.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Vrijednosti postavljene ovdje" +" su specifične za svaku tvrtku.\" aria-label=\"Vrijednosti postavljene ovdje" +" su specifične za svaku tvrtku.\" groups=\"base.group_multi_company\" " +"role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">PDV</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Tvrtke" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Ukoliko je ovdje označeno, nećete biti u mogućnosti snimiti partnera ako " +"njegov porezni broj nije potvrđen od strane EU-VIES servisa." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Porezni broj [%(vat)s] za partnera [%(name)s] ne čini se ispravan. \n" +"Napomena: očekivani format je %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "PDV" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Validiraj porezne brojeve" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Validiraj brojeve korištenjem VIES servisa" diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po new file mode 100644 index 00000000..b080b061 --- /dev/null +++ b/addons/base_vat/i18n/hu.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# Zsolt Godó <zsolttokio@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Zsolt Godó <zsolttokio@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">ÁFA</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Vállalatok" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kapcsolat" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "Azonosító" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ÁFA" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Adószámok ellenőrzése" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Ellenőrizze az adószámokat az európai VIES szolgáltatáson keresztül" diff --git a/addons/base_vat/i18n/hy.po b/addons/base_vat/i18n/hy.po new file mode 100644 index 00000000..9f7bc539 --- /dev/null +++ b/addons/base_vat/i18n/hy.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-07 16:39+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Armenian (http://www.transifex.com/odoo/odoo-9/language/hy/)\n" +"Language: hy\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 +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Ընկերություններ" + +#. module: base_vat +#: model:ir.model.fields,help:base_vat.field_res_company_vat_check_vies +msgid "" +"If checked, Partners VAT numbers will be fully validated against EU's VIES " +"service rather than via a simple format validation (checksum)." +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Partner" +msgstr "Գործընկեր" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:128 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:127 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +msgid "VIES VAT Check" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "e.g. BE0477472701" +msgstr "" diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po new file mode 100644 index 00000000..06c9bb47 --- /dev/null +++ b/addons/base_vat/i18n/id.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# pnyet <david@zeromail.us>, 2020 +# Bonny Useful <bonny.useful@gmail.com>, 2020 +# Muhammad Syarif <mhdsyarif.ms@gmail.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Ryanto The <ry.the77@gmail.com>, 2020\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Perusahaan" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontak" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "PPN" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/is.po b/addons/base_vat/i18n/is.po new file mode 100644 index 00000000..63dc5a2d --- /dev/null +++ b/addons/base_vat/i18n/is.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:16+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Fyrirtæki" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Tengiliður" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:154 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:153 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "VSK" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po new file mode 100644 index 00000000..12c35b0f --- /dev/null +++ b/addons/base_vat/i18n/it.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Paolo Valier, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"I valori impostati qui sono " +"specifici per azienda.\" aria-label=\"Values set here are company-" +"specific.\" groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">Partita IVA</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Aziende" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contatto" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Se la casella viene selezionata, non sarà possibile salvare un contatto se " +"la partita IVA non supera la verifica del servizio europeo VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"La partita IVA [%(vat)s] del partner [%(name)s] non sembra essere valida. \n" +"Nota: il formato atteso è %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"La partita IVA [%(vat)s] del partner [%(name)s] non ha superato la verifica " +"di validità VIES oppure non rispetta il formato %(format)s atteso." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "Partita IVA" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Verificare le partite IVA" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Verifica delle partite IVA con il servizio europeo VIES" diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po new file mode 100644 index 00000000..11d96b29 --- /dev/null +++ b/addons/base_vat/i18n/ja.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro (Quartile) <tashiro@roomsfor.hk>, 2020 +# Noma Yuki, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Noma Yuki, 2021\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">VAT</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "会社" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "連絡先" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "このチェックボックスがオンになっている場合、ヨーロッパのVIESサービスでVAT番号を確認できないと、連絡先を保存できません。" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"パートナー[%(name)s]のVAT番号[%(vat)s]が有効ではないようです。 \n" +"注:予想される形式は%(format)sです" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"パートナー[%(name)s]のVAT番号[%(vat)s]は、VIES " +"VAT検証チェックに失敗したか、予期された形式%(format)sを認識しませんでした。" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "VAT(Value Added Tax)" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "VAT番号を確認する" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "ヨーロッパのVIESサービスを使用してVAT番号を確認する" diff --git a/addons/base_vat/i18n/ka.po b/addons/base_vat/i18n/ka.po new file mode 100644 index 00000000..0285fced --- /dev/null +++ b/addons/base_vat/i18n/ka.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Martin Trigaux, 2021 +# Gvantsa Gvinianidze <gvantsa@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Gvantsa Gvinianidze <gvantsa@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "კომპანიები" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "კონფიგურაციის პარამეტრები" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "კონტაქტი" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/kab.po b/addons/base_vat/i18n/kab.po new file mode 100644 index 00000000..c243c6fc --- /dev/null +++ b/addons/base_vat/i18n/kab.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Tikebbaniyin" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/km.po b/addons/base_vat/i18n/km.po new file mode 100644 index 00000000..d7eda326 --- /dev/null +++ b/addons/base_vat/i18n/km.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "ក្រុមហ៊ុន" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "កំណត់រចនាសម្ព័ន្ធ" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "ទំនាក់ទំនង" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"ប្រសិនបើប្រអប់ធីកនេះត្រូវបានធីកអ្នកនឹងមិនអាចរក្សាទុកទំនាក់ទំនងប្រសិនបើលេខ " +"VAT របស់វាមិនអាចត្រូវបានផ្ទៀងផ្ទាត់ដោយសេវាកម្ម VIES របស់អឺរ៉ុប។" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "អាករ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "បញ្ជាក់ពីពន្ឋលេខ" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "ផ្ទៀងផ្ទាត់លេខពន្ធអាករដោយប្រើសេវាកម្ម VIES អឺរ៉ុប" diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po new file mode 100644 index 00000000..01499c42 --- /dev/null +++ b/addons/base_vat/i18n/ko.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Linkup <link-up@naver.com>, 2020 +# JH CHOI <hwangtog@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2021\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">부가가치세</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "회사" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "설정 구성" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "연락처" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "이 체크 박스를 체크하면 유럽 VIES 서비스에서 부가가치세 번호를 확인할 수 없는 경우 연락처를 저장할 수 없습니다." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"협력사 [%(name)s]의 VAT 번호 [%(vat)s]가 유효하지 않은 것 같습니다.\n" +"참고 : 예상되는 형식은 %(format)s입니다." + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"파트너 [%(name)s]의 VAT 번호 [%(vat)s]가 VIES VAT 유효성 검사에 실패했거나 예상 형식 %(format)s을 " +"준수하지 않았습니다." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "부가가치세" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "VAT 번호 확인" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "유럽 VIES 서비스를 사용하여 부가가치세 번호 확인" diff --git a/addons/base_vat/i18n/lb.po b/addons/base_vat/i18n/lb.po new file mode 100644 index 00000000..0ea72944 --- /dev/null +++ b/addons/base_vat/i18n/lb.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-12 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:09+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:188 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:187 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/lo.po b/addons/base_vat/i18n/lo.po new file mode 100644 index 00000000..51ccde65 --- /dev/null +++ b/addons/base_vat/i18n/lo.po @@ -0,0 +1,71 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po new file mode 100644 index 00000000..f5d4401e --- /dev/null +++ b/addons/base_vat/i18n/lt.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Įmonės" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontaktas" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Jei šis laukelis pažymėtas, nebus leidžiama išsaugoti kontakto, jei jo PVM " +"kodas nebus patvirtintas per Europos PVM greitų informacijos mainų - VIES " +"sistemą." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "PVM" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Tikrinti PVM kodus" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Tikrinti PVM kodus Europos VIES sistemoje" diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po new file mode 100644 index 00000000..044c20a3 --- /dev/null +++ b/addons/base_vat/i18n/lv.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# Artjoms Ustinovs <artyom.ustinov2010@yandex.ru>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Artjoms Ustinovs <artyom.ustinov2010@yandex.ru>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>(Kopija)" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Uzņēmumi" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurācijas iestatījumi" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakts" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "PVN" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po new file mode 100644 index 00000000..8836f457 --- /dev/null +++ b/addons/base_vat/i18n/mk.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po new file mode 100644 index 00000000..9b41662f --- /dev/null +++ b/addons/base_vat/i18n/mn.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# nurbakhit nurka <nurbakhit@bumanit.mn>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: nurbakhit nurka <nurbakhit@bumanit.mn>, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Эдгээр утгууд нь зөвхөн " +"тухайн компаны хувьд хадгалагдана.\" aria-label=\"Эдгээр утгууд нь зөвхөн " +"тухайн компаны хувьд хадгалагдана.\" groups=\"base.group_multi_company\" " +"role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Компаниуд" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Харилцах хаяг" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Энэхүү талбар сонгогдсон тохиолдолд, харилцагчийн НӨАТ-ийн дугаарыг Европын " +"НӨАТ-ийн мэдээлэл солилцох систем ашиглан баталгаажуулах боломжгүй " +"тохиолдолд харилцагч бүртгэх боломжгүй" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "НӨАТ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "НӨАТ-ийн дугаараа баталгаажуулах" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" +"НӨАТ-ийн дугаараа Европын НӨАТ-ийн мэдээлэл солилцох систем ашиглан " +"баталгаажуулах" diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po new file mode 100644 index 00000000..ec8e6d75 --- /dev/null +++ b/addons/base_vat/i18n/nb.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Verdier satt er er spesifikt " +"for firma.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "MVA" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Sjekk MVA-numre" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/ne.po b/addons/base_vat/i18n/ne.po new file mode 100644 index 00000000..a7208909 --- /dev/null +++ b/addons/base_vat/i18n/ne.po @@ -0,0 +1,71 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po new file mode 100644 index 00000000..a06f5bf9 --- /dev/null +++ b/addons/base_vat/i18n/nl.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Waardes die hier ingesteld " +"staan zijn bedrijfsspecifiek.\" aria-label=\"Waardes die hier ingesteld " +"staan zijn bedrijfsspecifiek.\" groups=\"base.group_multi_company\" " +"role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">BTW</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contact" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Als dit selectievakje is aangevinkt kunt u geen contactpersoon meer opslaan " +"als de BTW nummer niet geverifieerd kan worden door de Europese VIES " +"service." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Het BTW nummer [%(vat)s] van relatie [%(name)s] lijkt niet geldig te zijn \n" +"Opmerking: Het verwachte formaat is %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"Het BTW nummer [%(vat)s] voor relatie [%(name)s] komt niet door de VIES " +"controle of heeft niet het verwachte formaat %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "BTW" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Controleer BTW nummers" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" +"Controleer BTW nummers door gebruik te maken van de Europese VIES dienst" diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po new file mode 100644 index 00000000..56c69c0c --- /dev/null +++ b/addons/base_vat/i18n/nl_BE.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po new file mode 100644 index 00000000..4fcc47bf --- /dev/null +++ b/addons/base_vat/i18n/pl.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">VAT</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Firmy" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Jeśli to pole wyboru jest zaznaczone, nie będzie można zapisać kontaktu, " +"jeśli jego numer NIP nie może zostać zweryfikowany przez europejską usługę " +"VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Numer NIP [%(vat)s] dla partnera [%(name)s] nie wydaje się być prawidłowym. \n" +"Uwaga: pożądany format to %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"Numer NIP [%(vat)s] partnera [%(name)s] nie przeszedł weryfikacji poprzez " +"VIES VAT lub nie odpowiada spodziewanemu formatowi %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "NIP" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Zweryfikuj nr NIP" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Weryfikuj numery NIP za pomocą europejskiej usługi VIES" diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po new file mode 100644 index 00000000..c2af435b --- /dev/null +++ b/addons/base_vat/i18n/pt.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Valores registados aqui são " +"distintos por empresa.\" aria-label=\"Values set here are company-" +"specific.\" groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "NIF" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po new file mode 100644 index 00000000..27185591 --- /dev/null +++ b/addons/base_vat/i18n/pt_BR.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# renato sabo <renato.sabo@bradootech.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Definições de Configuração" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contato" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "Imposto" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po new file mode 100644 index 00000000..85526122 --- /dev/null +++ b/addons/base_vat/i18n/ro.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Valorile stabilite aici sunt " +"specifice companiei.\" aria-label=\"Valorile stabilite aici sunt specifice " +"companiei.\" groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">VAT</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Companii" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Contact" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Dacă este bifat, nu veți putea salva o persoană de contact dacă numărul său " +"de TVA nu poate fi verificat de serviciul european VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "TVA" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Verificare cod de TVA" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Verificare cod de TVA utilizând serviciul european VIES " diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po new file mode 100644 index 00000000..4eb9bc1a --- /dev/null +++ b/addons/base_vat/i18n/ru.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2021\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационные настройки" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Контакт" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "Идентификатор" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Если вы отметили этот пункт, вы не сможете сохранить данные о контакте, если" +" ИНН не может быть проверен с помощью Европейского сервиса VES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "НДС" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Проверка ИНН" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Проверка ИНН с помощью Европейского сервиса VES" diff --git a/addons/base_vat/i18n/si.po b/addons/base_vat/i18n/si.po new file mode 100644 index 00000000..e3495cac --- /dev/null +++ b/addons/base_vat/i18n/si.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po new file mode 100644 index 00000000..5bcbca19 --- /dev/null +++ b/addons/base_vat/i18n/sk.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2021\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">IČ DPH</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Ak zaškrtnuté, nebude možné uložiť kontakt ak jeho daňové registračné číslo " +"nebude možné overiť cez Európsku VIES službu." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"VAT číslo [%(vat)s] pre partnera [%(name)s] sa nezdá byť platný. \n" +"Poznámka: očakávaný formát je %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +" DPH číslo [%(vat)s] pre partnera[%(name)s] Buď neprešiel kontrolou " +"platnosti systému VIES DPH alebo nerešpektoval očakávaný formát%(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "IČ DPH" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Overiť číslo DPH" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Overiť číslo DPH pomocou európskej služby VIES" diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po new file mode 100644 index 00000000..082d5d0e --- /dev/null +++ b/addons/base_vat/i18n/sl.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Boris Kodelja <boris@hbs.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Podjetja" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Stik" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Če označeno, stika ne bo mogoče shraniti kadar ID za DDV stika ne more biti " +"overjena s strani evropske storitve VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ID DDV/DŠ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Preverjanje ID za DDV" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Preverjanje DDV številk preko evropske storitve VIES" diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po new file mode 100644 index 00000000..452102cc --- /dev/null +++ b/addons/base_vat/i18n/sq.po @@ -0,0 +1,74 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Kompanitë" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po new file mode 100644 index 00000000..16d2d95d --- /dev/null +++ b/addons/base_vat/i18n/sr.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:154 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:153 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "PDV" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po new file mode 100644 index 00000000..6174701e --- /dev/null +++ b/addons/base_vat/i18n/sr@latin.po @@ -0,0 +1,75 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +# Djordje Marjanovic <djordje_m@yahoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Djordje Marjanovic <djordje_m@yahoo.com>, 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Preduzeća" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:134 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:133 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_short_form +msgid "VAT" +msgstr "PDV" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings_vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "res.config.settings" +msgstr "" diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po new file mode 100644 index 00000000..f476ab41 --- /dev/null +++ b/addons/base_vat/i18n/sv.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Bolag" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationsinställningar" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "Moms" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/ta.po b/addons/base_vat/i18n/ta.po new file mode 100644 index 00000000..b8c6b01b --- /dev/null +++ b/addons/base_vat/i18n/ta.po @@ -0,0 +1,61 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2016-02-11 10:14+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n" +"Language: ta\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 +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "நிறுவனங்கள்" + +#. module: base_vat +#: model:ir.model.fields,help:base_vat.field_res_company_vat_check_vies +msgid "" +"If checked, Partners VAT numbers will be fully validated against EU's VIES " +"service rather than via a simple format validation (checksum)." +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Partner" +msgstr "கூட்டாளி" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:128 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] does not seem to be valid. \n" +"Note: the expected format is %s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/base_vat.py:127 +#, python-format +msgid "" +"The VAT number [%s] for partner [%s] either failed the VIES VAT validation " +"check or did not respect the expected format %s." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company_vat_check_vies +msgid "VIES VAT Check" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "e.g. BE0477472701" +msgstr "" diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po new file mode 100644 index 00000000..6dff8cab --- /dev/null +++ b/addons/base_vat/i18n/th.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">VAT</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "บริษัท" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "การตั้งค่า" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "ติดต่อ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "รหัส" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"หากทำเครื่องหมายในช่องนี้คุณจะไม่สามารถบันทึกรายชื่อติดต่อได้หากบริการ " +"European VIES ไม่สามารถตรวจสอบหมายเลข VAT ได้" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ภาษีมูลค่าเพิ่ม (VAT)" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "ตรวจสอบหมายเลข VAT" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "ตรวจสอบหมายเลข VAT โดยใช้บริการ European VIES" diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po new file mode 100644 index 00000000..33111efb --- /dev/null +++ b/addons/base_vat/i18n/tr.po @@ -0,0 +1,125 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# Yedigen, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">KDV</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Şirketler" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Temas" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Eğer kontrol kutusu işaretli ise ve vergi numarası European VIES servisi " +"tarafından doğrulanmamışsa, bir bağlantı kaydedemezsiniz." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "Vergi No" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Vergi No Doğrulama" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Avrupa VIES servisini kullanarak Vergi No Doğrulama" diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po new file mode 100644 index 00000000..130e4913 --- /dev/null +++ b/addons/base_vat/i18n/uk.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">ПДВ</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Компанії" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Контакт" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Якщо позначено цей пункт, ви не зможете зберегти контакт, якщо його номер " +"ПДВ не може бути підтверджено європейською службою VIES." + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"Номер ПДВ [%(vat)s] для партнера [%(name)s] здається недійсним. \n" +"Занотуйте: очікуваний формат - це %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"Номер ПДВ [%(vat)s] для партнера [%(name)s] або не пройшов перевірку ПДВ " +"VIES, або не відповідав очікуваному формату %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "ПДВ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Перевірте номери ПДВ" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Перевірте номери ПДВ за допомогою європейського сервісу VIES" diff --git a/addons/base_vat/i18n/ur.po b/addons/base_vat/i18n/ur.po new file mode 100644 index 00000000..60a92b60 --- /dev/null +++ b/addons/base_vat/i18n/ur.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "" diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po new file mode 100644 index 00000000..151a7155 --- /dev/null +++ b/addons/base_vat/i18n/vi.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Dao Nguyen <trucdao.uel@gmail.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">VAT</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "Công ty" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "Liên hệ" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "" +"Nếu ô này được đánh dấu, bạn sẽ không thể lưu danh bạ nếu mã số thuế không " +"tồn tại và không thể xác thực được với European VIES (một hệ thống trao đổi " +"thông tin mã số thuế của châu Âu)" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "Mã số thuế" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "Xác thực mã số thuế" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "Xác thực mã số thuế bằng dịch vụ European VIES" diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po new file mode 100644 index 00000000..3314b531 --- /dev/null +++ b/addons/base_vat/i18n/zh_CN.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# Martin Trigaux, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# 稀饭~~ <wangwhai@qq.com>, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: Jeffery CHEN Fan <jeffery9@gmail.com>, 2021\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\"增值税</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "联系人" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "如果勾选此复选框,则在欧洲 VIES 服务无法验证合同的增值税号码时,您将无法保存联系人。" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "上次修改时间" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" +"合作伙伴[%(vat)s] 的增值税号 [%(name)s] 似乎无效。\n" +"注意:预期格式为 %(format)s" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" +"合作伙伴 [%(name)s] 的增值税号 [%(vat)s] 要么未通过 VIES 增值税验证检查,要么未遵守预期格式 %(format)s." + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "增值税" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "验证增值税号码" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "使用欧洲 VIES 服务验证增值税号码" diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po new file mode 100644 index 00000000..79d45183 --- /dev/null +++ b/addons/base_vat/i18n/zh_TW.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_vat +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:11+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" +msgstr "" +"<span class=\"fa fa-lg fa-building-o\" title=\"Values set here are company-" +"specific.\" aria-label=\"Values set here are company-specific.\" " +"groups=\"base.group_multi_company\" role=\"img\"/>" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "<span class=\"o_vat_label\">VAT</span>" +msgstr "<span class=\"o_vat_label\">統一編號</span>" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: base_vat +#: model:ir.model,name:base_vat.model_res_partner +msgid "Contact" +msgstr "聯繫人" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:base_vat.field_res_partner__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__id +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__id +#: model:ir.model.fields,field_description:base_vat.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "" +"If this checkbox is ticked, you will not be able to save a contact if its " +"VAT number cannot be verified by the European VIES service." +msgstr "如果勾選此復選框,則在歐洲 VIES 服務無法驗證合同的統一編號時,您將無法保存合同。" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:base_vat.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \n" +"Note: the expected format is %(format)s" +msgstr "" + +#. module: base_vat +#: code:addons/base_vat/models/res_partner.py:0 +#, python-format +msgid "" +"The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT " +"validation check or did not respect the expected format %(format)s." +msgstr "" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.company_form_vat +#: model_terms:ir.ui.view,arch_db:base_vat.view_partner_form +msgid "VAT" +msgstr "統一編號" + +#. module: base_vat +#: model:ir.model.fields,field_description:base_vat.field_res_company__vat_check_vies +#: model:ir.model.fields,field_description:base_vat.field_res_config_settings__vat_check_vies +msgid "Verify VAT Numbers" +msgstr "驗證統一編號" + +#. module: base_vat +#: model_terms:ir.ui.view,arch_db:base_vat.res_config_settings_view_form +msgid "Verify VAT numbers using the European VIES service" +msgstr "使用歐洲 VIES 服務驗證統一編號" diff --git a/addons/base_vat/models/__init__.py b/addons/base_vat/models/__init__.py new file mode 100644 index 00000000..d245a560 --- /dev/null +++ b/addons/base_vat/models/__init__.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import res_config_settings +from . import res_company +from . import res_partner diff --git a/addons/base_vat/models/res_company.py b/addons/base_vat/models/res_company.py new file mode 100644 index 00000000..d9a063d3 --- /dev/null +++ b/addons/base_vat/models/res_company.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResCompany(models.Model): + _inherit = 'res.company' + + vat_check_vies = fields.Boolean(string='Verify VAT Numbers') diff --git a/addons/base_vat/models/res_config_settings.py b/addons/base_vat/models/res_config_settings.py new file mode 100644 index 00000000..c5a06f87 --- /dev/null +++ b/addons/base_vat/models/res_config_settings.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + vat_check_vies = fields.Boolean(related='company_id.vat_check_vies', readonly=False, + string='Verify VAT Numbers') diff --git a/addons/base_vat/models/res_partner.py b/addons/base_vat/models/res_partner.py new file mode 100644 index 00000000..7117af1b --- /dev/null +++ b/addons/base_vat/models/res_partner.py @@ -0,0 +1,560 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import datetime +import string +import re +import stdnum +from stdnum.eu.vat import check_vies +from stdnum.exceptions import InvalidComponent +import logging + +from odoo import api, models, tools, _ +from odoo.tools.misc import ustr +from odoo.exceptions import ValidationError + + +_logger = logging.getLogger(__name__) + +_eu_country_vat = { + 'GR': 'EL' +} + +_eu_country_vat_inverse = {v: k for k, v in _eu_country_vat.items()} + +_ref_vat = { + 'al': 'ALJ91402501L', + 'ar': 'AR200-5536168-2 or 20055361682', + 'at': 'ATU12345675', + 'au': '83 914 571 673', + 'be': 'BE0477472701', + 'bg': 'BG1234567892', + 'ch': 'CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA', # Swiss by Yannick Vaucher @ Camptocamp + 'cl': 'CL76086428-5', + 'co': 'CO213123432-1 or CO213.123.432-1', + 'cy': 'CY10259033P', + 'cz': 'CZ12345679', + 'de': 'DE123456788', + 'dk': 'DK12345674', + 'do': 'DO1-01-85004-3 or 101850043', + 'ec': 'EC1792060346-001', + 'ee': 'EE123456780', + 'el': 'EL12345670', + 'es': 'ESA12345674', + 'fi': 'FI12345671', + 'fr': 'FR23334175221', + 'gb': 'GB123456782 or XI123456782', + 'gr': 'GR12345670', + 'hu': 'HU12345676', + 'hr': 'HR01234567896', # Croatia, contributed by Milan Tribuson + 'ie': 'IE1234567FA', + 'in': "12AAAAA1234AAZA", + 'is': 'IS062199', + 'it': 'IT12345670017', + 'lt': 'LT123456715', + 'lu': 'LU12345613', + 'lv': 'LV41234567891', + 'mc': 'FR53000004605', + 'mt': 'MT12345634', + 'mx': 'MXGODE561231GR8 or GODE561231GR8', + 'nl': 'NL123456782B90', + 'no': 'NO123456785', + 'pe': '10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY', + 'pl': 'PL1234567883', + 'pt': 'PT123456789', + 'ro': 'RO1234567897', + 'rs': 'RS101134702', + 'ru': 'RU123456789047', + 'se': 'SE123456789701', + 'si': 'SI12345679', + 'sk': 'SK2022749619', + 'sm': 'SM24165', + 'tr': 'TR1234567890 (VERGINO) or TR17291716060 (TCKIMLIKNO)', # Levent Karakas @ Eska Yazilim A.S. + 'xi': 'XI123456782', +} + +_region_specific_vat_codes = { + 'xi', +} + + +class ResPartner(models.Model): + _inherit = 'res.partner' + + def _split_vat(self, vat): + vat_country, vat_number = vat[:2].lower(), vat[2:].replace(' ', '') + return vat_country, vat_number + + @api.model + def simple_vat_check(self, country_code, vat_number): + ''' + Check the VAT number depending of the country. + http://sima-pc.com/nif.php + ''' + if not ustr(country_code).encode('utf-8').isalpha(): + return False + check_func_name = 'check_vat_' + country_code + check_func = getattr(self, check_func_name, None) or getattr(stdnum.util.get_cc_module(country_code, 'vat'), 'is_valid', None) + if not check_func: + # No VAT validation available, default to check that the country code exists + if country_code.upper() == 'EU': + # Foreign companies that trade with non-enterprises in the EU + # may have a VATIN starting with "EU" instead of a country code. + return True + country_code = _eu_country_vat_inverse.get(country_code, country_code) + return bool(self.env['res.country'].search([('code', '=ilike', country_code)])) + return check_func(vat_number) + + @api.model + @tools.ormcache('vat') + def _check_vies(self, vat): + # Store the VIES result in the cache. In case an exception is raised during the request + # (e.g. service unavailable), the fallback on simple_vat_check is not kept in cache. + return check_vies(vat) + + @api.model + def vies_vat_check(self, country_code, vat_number): + try: + # Validate against VAT Information Exchange System (VIES) + # see also http://ec.europa.eu/taxation_customs/vies/ + vies_result = self._check_vies(country_code.upper() + vat_number) + return vies_result['valid'] + except InvalidComponent: + return False + except Exception: + # see http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl + # Fault code may contain INVALID_INPUT, SERVICE_UNAVAILABLE, MS_UNAVAILABLE, + # TIMEOUT or SERVER_BUSY. There is no way we can validate the input + # with VIES if any of these arise, including the first one (it means invalid + # country code or empty VAT number), so we fall back to the simple check. + _logger.exception("Failed VIES VAT check.") + return self.simple_vat_check(country_code, vat_number) + + @api.model + def fix_eu_vat_number(self, country_id, vat): + europe = self.env.ref('base.europe') + country = self.env["res.country"].browse(country_id) + if not europe: + europe = self.env["res.country.group"].search([('name', '=', 'Europe')], limit=1) + if europe and country and country.id in europe.country_ids.ids: + vat = re.sub('[^A-Za-z0-9]', '', vat).upper() + country_code = _eu_country_vat.get(country.code, country.code).upper() + if vat[:2] != country_code: + vat = country_code + vat + return vat + + @api.constrains('vat', 'country_id') + def check_vat(self): + if self.env.context.get('company_id'): + company = self.env['res.company'].browse(self.env.context['company_id']) + else: + company = self.env.company + eu_countries = self.env.ref('base.europe').country_ids + for partner in self: + if not partner.vat: + continue + + if company.vat_check_vies and partner.commercial_partner_id.country_id in eu_countries: + # force full VIES online check + check_func = self.vies_vat_check + else: + # quick and partial off-line checksum validation + check_func = self.simple_vat_check + + failed_check = False + #check with country code as prefix of the TIN + vat_country_code, vat_number = self._split_vat(partner.vat) + vat_has_legit_country_code = self.env['res.country'].search([('code', '=', vat_country_code.upper())]) + if not vat_has_legit_country_code: + vat_has_legit_country_code = vat_country_code.lower() in _region_specific_vat_codes + if vat_has_legit_country_code: + failed_check = not check_func(vat_country_code, vat_number) + + #if fails, check with country code from country + partner_country_code = partner.commercial_partner_id.country_id.code + if (not vat_has_legit_country_code or failed_check) and partner_country_code: + failed_check = not check_func(partner_country_code.lower(), partner.vat) + + # We allow any number if it doesn't start with a country code and the partner has no country. + # This is necessary to support an ORM limitation: setting vat and country_id together on a company + # triggers two distinct write on res.partner, one for each field, both triggering this constraint. + # If vat is set before country_id, the constraint must not break. + + if failed_check: + country_code = partner_country_code or vat_country_code + msg = partner._construct_constraint_msg(country_code.lower() if country_code else None) + raise ValidationError(msg) + + def _construct_constraint_msg(self, country_code): + self.ensure_one() + vat_no = "'CC##' (CC=Country Code, ##=VAT Number)" + vat_no = _ref_vat.get(country_code) or vat_no + if self.env.context.get('company_id'): + company = self.env['res.company'].browse(self.env.context['company_id']) + else: + company = self.env.company + if company.vat_check_vies: + return '\n' + _( + 'The VAT number [%(vat)s] for partner [%(name)s] either failed the VIES VAT validation check or did not respect the expected format %(format)s.', + vat=self.vat, + name=self.name, + format=vat_no + ) + return '\n' + _( + 'The VAT number [%(vat)s] for partner [%(name)s] does not seem to be valid. \nNote: the expected format is %(format)s', + vat=self.vat, + name=self.name, + format=vat_no + ) + + __check_vat_ch_re = re.compile(r'E([0-9]{9}|-[0-9]{3}\.[0-9]{3}\.[0-9]{3})(MWST|TVA|IVA)$') + + def check_vat_ch(self, vat): + ''' + Check Switzerland VAT number. + ''' + # A new VAT number format in Switzerland has been introduced between 2011 and 2013 + # https://www.estv.admin.ch/estv/fr/home/mehrwertsteuer/fachinformationen/steuerpflicht/unternehmens-identifikationsnummer--uid-.html + # The old format "TVA 123456" is not valid since 2014 + # Accepted format are: (spaces are ignored) + # CHE#########MWST + # CHE#########TVA + # CHE#########IVA + # CHE-###.###.### MWST + # CHE-###.###.### TVA + # CHE-###.###.### IVA + # + # /!\ The english abbreviation VAT is not valid /!\ + + match = self.__check_vat_ch_re.match(vat) + + if match: + # For new TVA numbers, the last digit is a MOD11 checksum digit build with weighting pattern: 5,4,3,2,7,6,5,4 + num = [s for s in match.group(1) if s.isdigit()] # get the digits only + factor = (5, 4, 3, 2, 7, 6, 5, 4) + csum = sum([int(num[i]) * factor[i] for i in range(8)]) + check = (11 - (csum % 11)) % 11 + return check == int(num[8]) + return False + + def _ie_check_char(self, vat): + vat = vat.zfill(8) + extra = 0 + if vat[7] not in ' W': + if vat[7].isalpha(): + extra = 9 * (ord(vat[7]) - 64) + else: + # invalid + return -1 + checksum = extra + sum((8-i) * int(x) for i, x in enumerate(vat[:7])) + return 'WABCDEFGHIJKLMNOPQRSTUV'[checksum % 23] + + def check_vat_ie(self, vat): + """ Temporary Ireland VAT validation to support the new format + introduced in January 2013 in Ireland, until upstream is fixed. + TODO: remove when fixed upstream""" + if len(vat) not in (8, 9) or not vat[2:7].isdigit(): + return False + if len(vat) == 8: + # Normalize pre-2013 numbers: final space or 'W' not significant + vat += ' ' + if vat[:7].isdigit(): + return vat[7] == self._ie_check_char(vat[:7] + vat[8]) + elif vat[1] in (string.ascii_uppercase + '+*'): + # Deprecated format + # See http://www.revenue.ie/en/online/third-party-reporting/reporting-payment-details/faqs.html#section3 + return vat[7] == self._ie_check_char(vat[2:7] + vat[0] + vat[8]) + return False + + # Mexican VAT verification, contributed by Vauxoo + # and Panos Christeas <p_christ@hol.gr> + __check_vat_mx_re = re.compile(br"(?P<primeras>[A-Za-z\xd1\xf1&]{3,4})" \ + br"[ \-_]?" \ + br"(?P<ano>[0-9]{2})(?P<mes>[01][0-9])(?P<dia>[0-3][0-9])" \ + br"[ \-_]?" \ + br"(?P<code>[A-Za-z0-9&\xd1\xf1]{3})$") + + def check_vat_mx(self, vat): + ''' Mexican VAT verification + + Verificar RFC México + ''' + # we convert to 8-bit encoding, to help the regex parse only bytes + vat = ustr(vat).encode('iso8859-1') + m = self.__check_vat_mx_re.match(vat) + if not m: + #No valid format + return False + try: + ano = int(m.group('ano')) + if ano > 30: + ano = 1900 + ano + else: + ano = 2000 + ano + datetime.date(ano, int(m.group('mes')), int(m.group('dia'))) + except ValueError: + return False + + # Valid format and valid date + return True + + # Netherlands VAT verification + __check_vat_nl_re = re.compile("(?:NL)?[0-9A-Z+*]{10}[0-9]{2}") + + def check_vat_nl(self, vat): + """ + Temporary Netherlands VAT validation to support the new format introduced in January 2020, + until upstream is fixed. + + Algorithm detail: http://kleineondernemer.nl/index.php/nieuw-btw-identificatienummer-vanaf-1-januari-2020-voor-eenmanszaken + + TODO: remove when fixed upstream + """ + + try: + from stdnum.util import clean + from stdnum.nl.bsn import checksum + except ImportError: + return True + + vat = clean(vat, ' -.').upper().strip() + + # Remove the prefix + if vat.startswith("NL"): + vat = vat[2:] + + if not len(vat) == 12: + return False + + # Check the format + match = self.__check_vat_nl_re.match(vat) + if not match: + return False + + # Match letters to integers + char_to_int = {k: str(ord(k) - 55) for k in string.ascii_uppercase} + char_to_int['+'] = '36' + char_to_int['*'] = '37' + + # 2 possible checks: + # - For natural persons + # - For non-natural persons and combinations of natural persons (company) + + # Natural person => mod97 full checksum + check_val_natural = '2321' + for x in vat: + check_val_natural += x if x.isdigit() else char_to_int[x] + if int(check_val_natural) % 97 == 1: + return True + + # Company => weighted(9->2) mod11 on bsn + vat = vat[:-3] + if vat.isdigit() and checksum(vat) == 0: + return True + + return False + + # Norway VAT validation, contributed by Rolv Råen (adEgo) <rora@adego.no> + # Support for MVA suffix contributed by Bringsvor Consulting AS (bringsvor@bringsvor.com) + def check_vat_no(self, vat): + """ + Check Norway VAT number.See http://www.brreg.no/english/coordination/number.html + """ + if len(vat) == 12 and vat.upper().endswith('MVA'): + vat = vat[:-3] # Strictly speaking we should enforce the suffix MVA but... + + if len(vat) != 9: + return False + try: + int(vat) + except ValueError: + return False + + sum = (3 * int(vat[0])) + (2 * int(vat[1])) + \ + (7 * int(vat[2])) + (6 * int(vat[3])) + \ + (5 * int(vat[4])) + (4 * int(vat[5])) + \ + (3 * int(vat[6])) + (2 * int(vat[7])) + + check = 11 - (sum % 11) + if check == 11: + check = 0 + if check == 10: + # 10 is not a valid check digit for an organization number + return False + return check == int(vat[8]) + + # Peruvian VAT validation, contributed by Vauxoo + def check_vat_pe(self, vat): + if len(vat) != 11 or not vat.isdigit(): + return False + dig_check = 11 - (sum([int('5432765432'[f]) * int(vat[f]) for f in range(0, 10)]) % 11) + if dig_check == 10: + dig_check = 0 + elif dig_check == 11: + dig_check = 1 + return int(vat[10]) == dig_check + + def check_vat_ru(self, vat): + ''' + Check Russia VAT number. + Method copied from vatnumber 1.2 lib https://code.google.com/archive/p/vatnumber/ + ''' + if len(vat) != 10 and len(vat) != 12: + return False + try: + int(vat) + except ValueError: + return False + + if len(vat) == 10: + check_sum = 2 * int(vat[0]) + 4 * int(vat[1]) + 10 * int(vat[2]) + \ + 3 * int(vat[3]) + 5 * int(vat[4]) + 9 * int(vat[5]) + \ + 4 * int(vat[6]) + 6 * int(vat[7]) + 8 * int(vat[8]) + check = check_sum % 11 + if check % 10 != int(vat[9]): + return False + else: + check_sum1 = 7 * int(vat[0]) + 2 * int(vat[1]) + 4 * int(vat[2]) + \ + 10 * int(vat[3]) + 3 * int(vat[4]) + 5 * int(vat[5]) + \ + 9 * int(vat[6]) + 4 * int(vat[7]) + 6 * int(vat[8]) + \ + 8 * int(vat[9]) + check = check_sum1 % 11 + + if check != int(vat[10]): + return False + check_sum2 = 3 * int(vat[0]) + 7 * int(vat[1]) + 2 * int(vat[2]) + \ + 4 * int(vat[3]) + 10 * int(vat[4]) + 3 * int(vat[5]) + \ + 5 * int(vat[6]) + 9 * int(vat[7]) + 4 * int(vat[8]) + \ + 6 * int(vat[9]) + 8 * int(vat[10]) + check = check_sum2 % 11 + if check != int(vat[11]): + return False + return True + + # VAT validation in Turkey, contributed by # Levent Karakas @ Eska Yazilim A.S. + def check_vat_tr(self, vat): + + if not (10 <= len(vat) <= 11): + return False + try: + int(vat) + except ValueError: + return False + + # check vat number (vergi no) + if len(vat) == 10: + sum = 0 + check = 0 + for f in range(0, 9): + c1 = (int(vat[f]) + (9-f)) % 10 + c2 = (c1 * (2 ** (9-f))) % 9 + if (c1 != 0) and (c2 == 0): + c2 = 9 + sum += c2 + if sum % 10 == 0: + check = 0 + else: + check = 10 - (sum % 10) + return int(vat[9]) == check + + # check personal id (tc kimlik no) + if len(vat) == 11: + c1a = 0 + c1b = 0 + c2 = 0 + for f in range(0, 9, 2): + c1a += int(vat[f]) + for f in range(1, 9, 2): + c1b += int(vat[f]) + c1 = ((7 * c1a) - c1b) % 10 + for f in range(0, 10): + c2 += int(vat[f]) + c2 = c2 % 10 + return int(vat[9]) == c1 and int(vat[10]) == c2 + + return False + + def check_vat_ua(self, vat): + res = [] + for partner in self: + if partner.commercial_partner_id.country_id.code == 'MX': + if len(vat) == 10: + res.append(True) + else: + res.append(False) + elif partner.commercial_partner_id.is_company: + if len(vat) == 12: + res.append(True) + else: + res.append(False) + else: + if len(vat) == 10 or len(vat) == 9: + res.append(True) + else: + res.append(False) + return all(res) + + def check_vat_xi(self, vat): + """ Temporary Nothern Ireland VAT validation following Brexit + As of January 1st 2021, companies in Northern Ireland have a + new VAT number starting with XI + TODO: remove when stdnum is updated to 1.16 in supported distro""" + return stdnum.util.get_cc_module('gb', 'vat').is_valid(vat) if stdnum else True + + def check_vat_in(self, vat): + #reference from https://www.gstzen.in/a/format-of-a-gst-number-gstin.html + if vat and len(vat) == 15: + all_gstin_re = [ + r'[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[Zz1-9A-Ja-j]{1}[0-9a-zA-Z]{1}', # Normal, Composite, Casual GSTIN + r'[0-9]{4}[A-Z]{3}[0-9]{5}[UO]{1}[N][A-Z0-9]{1}', #UN/ON Body GSTIN + r'[0-9]{4}[a-zA-Z]{3}[0-9]{5}[N][R][0-9a-zA-Z]{1}', #NRI GSTIN + r'[0-9]{2}[a-zA-Z]{4}[a-zA-Z0-9]{1}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[DK]{1}[0-9a-zA-Z]{1}', #TDS GSTIN + r'[0-9]{2}[a-zA-Z]{5}[0-9]{4}[a-zA-Z]{1}[1-9A-Za-z]{1}[C]{1}[0-9a-zA-Z]{1}' #TCS GSTIN + ] + return any(re.compile(rx).match(vat) for rx in all_gstin_re) + return False + + def check_vat_au(self, vat): + ''' + The Australian equivalent of a VAT number is an ABN number. + TFN (Australia Tax file numbers) are private and not to be + entered into systems or publicly displayed, so ABN numbers + are the public facing number that legally must be displayed + on all invoices + ''' + check_func = getattr(stdnum.util.get_cc_module('au', 'abn'), 'is_valid', None) + if not check_func: + vat = vat.replace(" ", "") + return len(vat) == 11 and vat.isdigit() + return check_func(vat) + + def format_vat_ch(self, vat): + stdnum_vat_format = getattr(stdnum.util.get_cc_module('ch', 'vat'), 'format', None) + return stdnum_vat_format('CH' + vat)[2:] if stdnum_vat_format else vat + + def _fix_vat_number(self, vat, country_id): + code = self.env['res.country'].browse(country_id).code if country_id else False + vat_country, vat_number = self._split_vat(vat) + if code and code.lower() != vat_country: + return vat + stdnum_vat_fix_func = getattr(stdnum.util.get_cc_module(vat_country, 'vat'), 'compact', None) + #If any localization module need to define vat fix method for it's country then we give first priority to it. + format_func_name = 'format_vat_' + vat_country + format_func = getattr(self, format_func_name, None) or stdnum_vat_fix_func + if format_func: + vat_number = format_func(vat_number) + return vat_country.upper() + vat_number + + @api.model_create_multi + def create(self, vals_list): + for values in vals_list: + if values.get('vat'): + country_id = values.get('country_id') + values['vat'] = self._fix_vat_number(values['vat'], country_id) + return super(ResPartner, self).create(vals_list) + + def write(self, values): + if values.get('vat') and len(self.mapped('country_id')) == 1: + country_id = values.get('country_id', self.country_id.id) + values['vat'] = self._fix_vat_number(values['vat'], country_id) + return super(ResPartner, self).write(values) diff --git a/addons/base_vat/tests/__init__.py b/addons/base_vat/tests/__init__.py new file mode 100644 index 00000000..89c4b041 --- /dev/null +++ b/addons/base_vat/tests/__init__.py @@ -0,0 +1,2 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from . import test_validate_ruc diff --git a/addons/base_vat/tests/test_validate_ruc.py b/addons/base_vat/tests/test_validate_ruc.py new file mode 100644 index 00000000..55845fdd --- /dev/null +++ b/addons/base_vat/tests/test_validate_ruc.py @@ -0,0 +1,92 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +from odoo.tests.common import SavepointCase, tagged +from odoo.exceptions import ValidationError +from unittest.mock import patch + +import stdnum.eu.vat + + +class TestStructure(SavepointCase): + @classmethod + def setUpClass(cls): + def check_vies(vat_number): + return {'valid': vat_number == 'BE0477472701'} + + super().setUpClass() + cls.env.user.company_id.vat_check_vies = False + cls._vies_check_func = check_vies + + def test_peru_ruc_format(self): + """Only values that has the length of 11 will be checked as RUC, that's what we are proving. The second part + will check for a valid ruc and there will be no problem at all. + """ + partner = self.env['res.partner'].create({'name': "Dummy partner", 'country_id': self.env.ref('base.pe').id}) + + with self.assertRaises(ValidationError): + partner.vat = '11111111111' + partner.vat = '20507822470' + + def test_vat_country_difference(self): + """Test the validation when country code is different from vat code""" + partner = self.env['res.partner'].create({ + 'name': "Test", + 'country_id': self.env.ref('base.mx').id, + 'vat': 'RORO790707I47', + }) + self.assertEqual(partner.vat, 'RORO790707I47', "Partner VAT should not be altered") + + def test_parent_validation(self): + """Test the validation with company and contact""" + + # set an invalid vat number + self.env.user.company_id.vat_check_vies = False + company = self.env["res.partner"].create({ + "name": "World Company", + "country_id": self.env.ref("base.be").id, + "vat": "ATU12345675", + "company_type": "company", + }) + contact = self.env["res.partner"].create({ + "name": "Sylvestre", + "parent_id": company.id, + "company_type": "person", + }) + + # reactivate it and correct the vat number + with patch('odoo.addons.base_vat.models.res_partner.check_vies', type(self)._vies_check_func): + self.env.user.company_id.vat_check_vies = True + + def test_vat_syntactic_validation(self): + """ Tests VAT validation (both successes and failures), with the different country + detection cases possible. + """ + test_partner =self.env['res.partner'].create({'name': "John Dex"}) + + # VAT starting with country code: use the starting country code + test_partner.write({'vat': 'BE0477472701', 'country_id': self.env.ref('base.fr').id}) + test_partner.write({'vat': 'BE0477472701', 'country_id': None}) + + with self.assertRaises(ValidationError): + test_partner.write({'vat': 'BE42', 'country_id': self.env.ref('base.fr').id}) + + with self.assertRaises(ValidationError): + test_partner.write({'vat': 'BE42', 'country_id': None}) + + # No country code in VAT: use the partner's country + test_partner.write({'vat': '0477472701', 'country_id': self.env.ref('base.be').id}) + + with self.assertRaises(ValidationError): + test_partner.write({'vat': '42', 'country_id': self.env.ref('base.be').id}) + + # If no country can be guessed: VAT number should always be considered valid + # (for technical reasons due to ORM and res.company making related fields towards res.partner for country_id and vat) + test_partner.write({'vat': '0477472701', 'country_id': None}) + + +@tagged('-standard', 'external') +class TestStructureVIES(TestStructure): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.env.user.company_id.vat_check_vies = True + cls._vies_check_func = stdnum.eu.vat.check_vies diff --git a/addons/base_vat/views/res_company_views.xml b/addons/base_vat/views/res_company_views.xml new file mode 100644 index 00000000..f4af1016 --- /dev/null +++ b/addons/base_vat/views/res_company_views.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="company_form_vat" model="ir.ui.view"> + <field name="name">res.company.form.vat.inherit</field> + <field name="model">res.company</field> + <field name="inherit_id" ref="base.view_company_form"/> + <field name="arch" type="xml"> + <xpath expr="//field[@name='vat']" position="attributes"> + <attribute name="string">VAT</attribute> + </xpath> + </field> + </record> +</odoo> diff --git a/addons/base_vat/views/res_config_settings_views.xml b/addons/base_vat/views/res_config_settings_views.xml new file mode 100644 index 00000000..ebb2fcc8 --- /dev/null +++ b/addons/base_vat/views/res_config_settings_views.xml @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + + <record id="res_config_settings_view_form" model="ir.ui.view"> + <field name="name">res.config.settings.view.form.inherit.base.vat</field> + <field name="model">res.config.settings</field> + <field name="inherit_id" ref="account.res_config_settings_view_form"/> + <field name="arch" type="xml"> + <div id="eu_service" position="after"> + <div class="col-12 col-lg-6 o_setting_box" + id="vies_service_setting" + title="If this checkbox is ticked, you will not be able to save a contact if its VAT number cannot be verified by the European VIES service."> + <div class="o_setting_left_pane"> + <field name="vat_check_vies"/> + </div> + <div class="o_setting_right_pane"> + <label for="vat_check_vies"/> + <span class="fa fa-lg fa-building-o" title="Values set here are company-specific." aria-label="Values set here are company-specific." groups="base.group_multi_company" role="img"/> + <div class="text-muted"> + Verify VAT numbers using the European VIES service + </div> + </div> + </div> + </div> + </field> + </record> + +</odoo> diff --git a/addons/base_vat/views/res_partner_views.xml b/addons/base_vat/views/res_partner_views.xml new file mode 100644 index 00000000..31374587 --- /dev/null +++ b/addons/base_vat/views/res_partner_views.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="view_partner_form" model="ir.ui.view"> + <field name="name">res.partner.vat.inherit</field> + <field name="model">res.partner</field> + <field name="inherit_id" ref="base.view_partner_form"/> + <field name="arch" type="xml"> + <xpath expr="//field[@name='vat']" position="attributes"> + <attribute name="string">VAT</attribute> + </xpath> + <xpath expr="//span[hasclass('o_vat_label')]" position="replace"> + <span class="o_vat_label">VAT</span> + </xpath> + </field> + </record> +</odoo> |
