mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-22 20:52:00 +02:00
Initial commit: Core packages
This commit is contained in:
commit
12c29a983b
9512 changed files with 8379910 additions and 0 deletions
72
odoo-bringout-oca-ocb-base_vat/README.md
Normal file
72
odoo-bringout-oca-ocb-base_vat/README.md
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
# VAT Number Validation
|
||||
|
||||
|
||||
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.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-base_vat
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- account
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: VAT Number Validation
|
||||
- **Version**: 1.0
|
||||
- **Category**: Accounting/Accounting
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: False
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `base_vat`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
4
odoo-bringout-oca-ocb-base_vat/base_vat/__init__.py
Normal file
4
odoo-bringout-oca-ocb-base_vat/base_vat/__init__.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
43
odoo-bringout-oca-ocb-base_vat/base_vat/__manifest__.py
Normal file
43
odoo-bringout-oca-ocb-base_vat/base_vat/__manifest__.py
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
# -*- 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_config_settings_views.xml',
|
||||
'views/res_partner_views.xml',
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/af.po
Normal file
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/af.po
Normal file
|
|
@ -0,0 +1,257 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontak"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/am.po
Normal file
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/am.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-21 21:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "TR1234567890 (VERGINO) or TR17291716060 (TCKIMLIKNO)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
277
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ar.po
Normal file
277
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ar.po
Normal file
|
|
@ -0,0 +1,277 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Arabic (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY أو 20XXXXXXXXY أو 15XXXXXXXXY أو 16XXXXXXXXY أو 17XXXXXXXXY "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) أو 1729171602 (VKN) "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 أو 1792060346 "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [مكوّن من 15 رقم، ويجب أن يكون أول وآخر رقم \"3\"] "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 أو 49098576 "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 أو 20055361682 "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA أو CHE-123.456.788 MWST أو CHE-123.456.788 IVA "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 أو CO213.123.432-1 "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 أو 12/345/67890 "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 أو 101850043 "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr "مثال: ”219999830019“ (التنسيق: 12 رقم، كافة الأرقام، رقم شيك صالح) "
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "الوضع المالي "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 أو XI123456782 "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 أو 12345678-1-11 أو 8071592153 "
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 أو GODE561231GR8 "
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"حقل تقني يعرض رسالة للمستخدم في حال فشل فحص نظام تبادل معلومات الضريبة "
|
||||
"(VIES). "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"يبدو أن %(vat_label)s رقم [%(wrong_vat)s] غير صالحة. \n"
|
||||
"ملاحظة: التنسيق المتوقع هو %(expected_format)s "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"يبدو أن رقم %(vat_label)s [%(wrong_vat)s] لـ %(record_label)s غير صالح. \n"
|
||||
"ملاحظة: الصيغة المتوقعة هي %(expected_format)s "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
"لقد فشل رقم الضريبة %s في اختبار التحقق من نظام تبادل معلومات الضريبة. "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"لا تطابق الدولة التي تم رصدها لرقم ضريبة القيمة المضافة هذا أي من الدول التي"
|
||||
" تشكّل مجموعة الدولة التي تم تعيينها لهذا الوضع المالي. "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"تعذر رصد دولة رقم ضريبة القيمة المضافة الأجنبية. يُرجى تعيين دولة للوضع "
|
||||
"المالي أو قم بتعيين مجموعة دولة "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 الأوروبية "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 أرقام] ويجب أن تضع بعين الاعتبار Luhn algorithm checksum "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "إما 11 رقم لـ CPF أو 14 رقم لـ CNPJ "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "الوضع المالي [%s] "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "الشريك [%s] "
|
||||
264
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/az.po
Normal file
264
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/az.po
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# erpgo translator <jumshud@erpgo.az>, 2022
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2023\n"
|
||||
"Language-Team: Azerbaijani (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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=\"Burada qeyd olunan dəyərlər "
|
||||
"şirkətə məxsusdur.\" aria-label=\"Burada qeyd olunan dəyərlər şirkətə "
|
||||
"məxsusdur.\" groups=\"base.group_multi_company\" role=\"img\"/>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Şirkətlər"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Parametrləri Konfiqurasiya edin"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Maliyyə Vəziyyəti"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"Bu onay qutusuna işarələr qoyulursa, ƏDV nömrəsi Avropa VIES xidməti "
|
||||
"tərəfindən təsdiq edilə bilmədiyi təqdirdə bir əlaqəni saxlaya "
|
||||
"bilməyəcəksiniz."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "ƏDV"
|
||||
|
||||
#. 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 "ƏDV nömrələrini doğrulayın"
|
||||
|
||||
#. 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 "Avropa VIES xidmətindən istifadə edərək ƏDV nömrələrini doğrulayın"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
253
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/base_vat.pot
Normal file
253
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/base_vat.pot
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/be.po
Normal file
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/be.po
Normal file
|
|
@ -0,0 +1,257 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
265
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/bg.po
Normal file
265
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/bg.po
Normal file
|
|
@ -0,0 +1,265 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Albena Mincheva <albena_vicheva@abv.bg>, 2023\n"
|
||||
"Language-Team: Bulgarian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Фискална позиция"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
253
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/bs.po
Normal file
253
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/bs.po
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:27+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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 ili 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [petnaest znamenaka, prva i zadnja moraju biti \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 ili 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 ili 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA ili CHE-123.456.788 MWST ili CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 ili CO213.123.432-1"
|
||||
|
||||
#. 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 "Postavke"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 ili 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 ili 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiskalna pozicija"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 ili XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 ili 12345678-1-11 ili 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 ili GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr "Tehničko polje prikazuje poruku korisniku ako je VIES provjera neuspješna."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "Porezni broj %s nije prošao validaciju u VIES bazi."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "PDV broj [%s] za partnera [%s] izgleda da nije važeći. \nNapomena: očekivani format je %s"
|
||||
|
||||
#. 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 "PDV broj [%s] za partnera [%s] ili nije prošao VIES PDV validacionu proveru ili nije poštovao očekivani format %s."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 brojeva] trebalo bi poštivati Luhn algoritam za provjeru"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "između 11 znamenaka za CPF ili 14 znamenaka za CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiskalna pozicija [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ca.po
Normal file
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ca.po
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# M Palau <mpalau@tda.ad>, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2022
|
||||
# marcescu, 2022
|
||||
# jabiri7, 2022
|
||||
# Ivan Espinola, 2023
|
||||
# Óscar Fonseca <tecnico@pyming.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# martioodo hola, 2023
|
||||
# Noemi Pla, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Noemi Pla, 2025\n"
|
||||
"Language-Team: Catalan (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr "10XXXXXXXXY o 20XXXXXXXXY o 15XXXXXXXXY o 16XXXXXXXXY o 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 o 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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 "Ajustos de configuració"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Posició fiscal"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"Si aquesta casella de selecció està marcada, no podrà salvar un contacte si "
|
||||
"el seu número d'IVA no pot ser verificat pel servei de vies europees."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"El camp tècnic mostra un missatge a l'usuari si la comprovació de VIES "
|
||||
"falla."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"El %(vat_label)s número [%(wrong_vat)s] no sembla vàlid.\n"
|
||||
"Nota: el format esperat és %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"El %(vat_label)s número [%(wrong_vat)s] per %(record_label)s a no sembla vàlid.\n"
|
||||
"Nota: el format esperat és %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
"El NIF %s ha fallat la comprovació de validació del número d'IVA al VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "Verifica els números d'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 els números de l'IVA utilitzant el servei European VIES"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "posició fiscal [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "soci [%s]"
|
||||
270
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/cs.po
Normal file
270
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/cs.po
Normal file
|
|
@ -0,0 +1,270 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2022
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2023
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Fiala <f.ales1@seznam.cz>, 2024\n"
|
||||
"Language-Team: Czech (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Daňová pozice"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr "Technické pole zobrazí zprávu uživateli, pokud kontrola VIES selže."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Číslo %(vat_label)s [%(wrong_vat)s] se nezdá být platné.\n"
|
||||
"Poznámka: očekávaný formát je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Číslo %(vat_label)s [%(wrong_vat)s] pro %(record_label)sse nezdá být platné.\n"
|
||||
"Poznámka: očekávaný formát je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "DIČ %s neprošlo ověřením platnosti DPH v systému VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiskální pozice [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
267
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/da.po
Normal file
267
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/da.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2024
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY eller 20XXXXXXXXY eller 15XXXXXXXXY eller 16XXXXXXXXY eller "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 eller 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 eller 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 eller 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA eller CHE-123.456.788 MWST eller CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 eller CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 eller 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Bogføringsgruppe"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 eller XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 eller 12345678-1-11 eller 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 eller GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "bogføringsgruppe [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
286
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/de.po
Normal file
286
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/de.po
Normal file
|
|
@ -0,0 +1,286 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: German (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY oder 20XXXXXXXXY oder 15XXXXXXXXY oder 16XXXXXXXXY oder "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) oder 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 oder 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Fünfzehn Ziffern, erste und letzte Ziffer sollte „3“ sein]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 oder 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 oder 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA oder CHE-123.456.788 MWST oder CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 oder CO213.123.432-1"
|
||||
|
||||
#. 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 "Konfigurationseinstellungen"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 oder 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 oder 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Beispiel: „219999830019“ (Format: 12 Ziffern, alle Zahlen, gültige "
|
||||
"Prüfziffer)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Steuerposition"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 oder XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 oder 12345678-1-11 oder 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 oder GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Das technische Feld zeigt dem Benutzer eine Meldung an, wenn die MIAS-"
|
||||
"Prüfung fehlschlägt."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Die %(vat_label)s-Nummer [%(wrong_vat)s] scheint nicht gültig zu sein. \n"
|
||||
"Hinweis: Das erwartete Format ist %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Die %(vat_label)s-Nummer [%(wrong_vat)s] für %(record_label)s scheint nicht gültig zu sein. \n"
|
||||
"Hinweis: Das erwartete Format ist %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "Die USt-IdNr. %s hat die MIAS-Validierungsprüfung nicht bestanden."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Das für diese ausländische MwSt.-Nummer ermittelte Land stimmt mit keinem "
|
||||
"der Länder überein, aus denen sich die Ländergruppe für diese Steuerposition"
|
||||
" zusammensetzt."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Das Land der ausländischen MwSt.-Nummer konnte nicht erkannt werden. Bitte "
|
||||
"weisen Sie der Steuerposition ein Land zu oder legen Sie eine Ländergruppe "
|
||||
"fest"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "USt-IdNr."
|
||||
|
||||
#. 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.-Nummern ü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.-Nummern mit dem europäischen MIAS-Service überprüfen"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 Ziffern] und es sollte die Prüfsumme des Luhn-Algorithmus "
|
||||
"einhalten"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "entweder 11 Ziffern für CPF oder 14 Ziffern für CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "Steuerposition [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "Partner [%s]"
|
||||
82
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/el.po
Normal file
82
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/el.po
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.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: George Tarasidis <george_tarasidis@yahoo.com>, 2018\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: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 ""
|
||||
"Ο ΑΦΜ [%s] για τον συναλλασσόμενο [%s] δεν είναι έγκυρος.\n"
|
||||
"Σημείωση: η μορφή πρέπει να είναι %s"
|
||||
|
||||
#. 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 ""
|
||||
"Ο ΑΦΜ [%s] για τον συναλλασσόμενο [%s] είτε έχει αποτύχει κατά την επικύρωση"
|
||||
" VIES είτε δεν έχει την αναμενόμενη μορφή %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 "ΦΠΑ"
|
||||
|
||||
#. 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 υπηρεσία"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/en_GB.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/en_GB.po
Normal file
|
|
@ -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 ""
|
||||
281
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es.po
Normal file
281
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es.po
Normal file
|
|
@ -0,0 +1,281 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Pedro M. Baeza <pedro.baeza@tecnativa.com>, 2024
|
||||
# Larissa Manderfeld, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Spanish (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr "10XXXXXXXXY o 20XXXXXXXXY o 15XXXXXXXXY o 16XXXXXXXXY o 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) o 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 o 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [Quince dígitos, el primero y el último deben ser \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 o 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 o 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA o CHE-123.456.788 MWST o CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 o CO213.123.432-1"
|
||||
|
||||
#. 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_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Ajustes de configuración"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 o 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 o 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Ejemplo: ‘219999830019’ (formato: 12 dígitos, todos los números, dígito de "
|
||||
"control válido)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Posición fiscal"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 o XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 o 12345678-1-11 o 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 o GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Campo técnico que muestra un mensaje al usuario si no se cumple con la "
|
||||
"verificación VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"El número %(vat_label)s [%(wrong_vat)s] no parece ser válido. \n"
|
||||
"Tome en cuenta que el formato esperado es %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"El número de %(vat_label)s [%(wrong_vat)s] para %(record_label)s no parece correcto. \n"
|
||||
"Nota: el formato esperado es %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
"El número de identificación fiscal %s no pasó la verificación de validación "
|
||||
"VIES VAT."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"El país detectado para este NIF extranjero no coincide con ninguno de los "
|
||||
"países del grupo de países establecido en esta posición fiscal."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"No se ha podido detectar el país del NIF extranjero. Asigne un país a la "
|
||||
"posición fiscal o establezca un grupo de países"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 NIFs"
|
||||
|
||||
#. 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 NIFs con el servicio europeo VIES"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 dígitos] y debe respetar la suma de verificación del algoritmo "
|
||||
"Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "ya sea 11 dígitos para CPF o 14 dígitos para CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "posición fiscal [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "contacto [%s]"
|
||||
58
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_BO.po
Normal file
58
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_BO.po
Normal file
|
|
@ -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"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_CL.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_CL.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_CO.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_CO.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_CR.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_CR.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_DO.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_DO.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_EC.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_EC.po
Normal file
|
|
@ -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 ""
|
||||
284
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_MX.po
Normal file
284
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,284 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Braulio D. López Vázquez <bdl@odoo.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Lucia Pacheco, 2023
|
||||
# Fernanda Alvarez, 2024
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr "10XXXXXXXXY o 20XXXXXXXXY o 15XXXXXXXXY o 16XXXXXXXXY o 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) o 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 o 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [Quince dígitos, el primero y el último deben ser \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 o 49098576"
|
||||
|
||||
#. 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=\"Los valores establecidos aquí"
|
||||
" son específicos de la empresa.\" aria-label=\"Los valores establecidos aquí"
|
||||
" son específicos de la empresa.\" groups=\"base.group_multi_company\" "
|
||||
"role=\"img\"/>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 o 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA o CHE-123.456.788 MWST o CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 o CO213.123.432-1"
|
||||
|
||||
#. 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 "Ajustes de configuración"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 o 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 o 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Por ejemplo: \"219999830019\" (formato: 12 dígitos, todos los números, "
|
||||
"dígito de control válido)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Posición fiscal"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 o XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 o 12345678-1-11 o 8071592153"
|
||||
|
||||
#. 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 válido para el servicio Europeo VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 o GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Campo técnico que muestra un mensaje al usuario si no se cumple con la "
|
||||
"verificación VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"El número %(vat_label)s [%(wrong_vat)s] no parece ser válido. \n"
|
||||
"Tome en cuenta que el formato esperado es %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"El número %(vat_label)s [%(wrong_vat)s] para %(record_label)s no parece ser válido.\n"
|
||||
"Tome en cuenta que el formato esperado es %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
"El número de identificación fiscal %s no pasó la verificación de validación "
|
||||
"VIES VAT."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"El país detectado para este número de identificación extranjero no coincide "
|
||||
"con ninguno de los países del grupo de países establecido en esta posición "
|
||||
"fiscal."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"No se pudo detectar el país del número de identificación extranjero. Asigne "
|
||||
"un país a la posición fiscal o establezca un grupo de países."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "Comprobar números de 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 "Comprobar un número de IVA con el sistema europeo VIES"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 dígitos] que deben cumplir con la suma de verificación del "
|
||||
"algoritmo de Luhn."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 dígitos para CPF o 14 dígitos para CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "posición fiscal [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_PE.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_PE.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_PY.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_PY.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_VE.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/es_VE.po
Normal file
|
|
@ -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 ""
|
||||
276
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/et.po
Normal file
276
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/et.po
Normal file
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# JanaAvalah, 2023
|
||||
# Martin Aavastik <martin@avalah.ee>, 2023
|
||||
# Stevin Lilla, 2024
|
||||
# Anna, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Anna, 2025\n"
|
||||
"Language-Team: Estonian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 or 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 or 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 or CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 või 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 or 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Finantspositsioon"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 or XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 or GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Arv %(vat_label)s [%(wrong_vat)s] ei tundu olevat kehtiv.\n"
|
||||
"Märkus: eeldatav vorming on %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s number [%(wrong_vat)s] jaoks %(record_label)s ei tundu olevat kehtiv.\n"
|
||||
"Märkus: eeldatav vorming on %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Käibemaksukohuslase põhjal tuvastatud riik ei kuulu sellesse "
|
||||
"finantspositsiooni riikide gruppi."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Käibemaksukohuslase numbri põhjal ei suudetud riiki tuvastada. Palun määra "
|
||||
"riik finantspositsioonile või määra riikide grupp"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "finantspositsioon [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/eu.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/eu.po
Normal file
|
|
@ -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: 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:ir.model,name:base_vat.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Enpresak"
|
||||
|
||||
#. 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 ""
|
||||
275
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fa.po
Normal file
275
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fa.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Mohammad Tahmasebi <hit.tah75@gmail.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024\n"
|
||||
"Language-Team: Persian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"۱۰XXXXXXXXY یا ۲۰XXXXXXXXY یا ۱۵XXXXXXXXY یا ۱۶XXXXXXXXY یا ۱۷XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 یا 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [پانزده رقم، رقم اول و آخر باید \"۳\" باشد]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "۴۹-۰۹۸-۵۷۶ یا ۴۹۰۹۸۵۷۶"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 یا 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 مالیات بر ارزش افزوده یا CHE-123.456.788 مالیات بر خدمات یا "
|
||||
"CHE-123.456.788 مالیات بر ارزش افزوده"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 یا CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
"<!DOCTYPE html>\n"
|
||||
"<p>DO1-01-85004-3 یا 101850043</p>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "موقعیت مالی"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "یا XI123456782 GB123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 یا 12345678-1-11 یا 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 یا GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"شماره %(vat_label)s [%(wrong_vat)s] به نظر نمیرسد معتبر باشد.\n"
|
||||
"توجه: قالب مورد انتظار %(expected_format)s است."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"شماره %(vat_label)s [%(wrong_vat)s] برای %(record_label)s به نظر معتبر نمیرسد.\n"
|
||||
"توجه: فرمت مورد انتظار %(expected_format)s میباشد."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 ، شماره مالیات بر ارزش افزوده را تأیید کنید"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "یا 11 رقم برای CPF یا 14 رقم برای CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "موقعیت مالی [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "شریک [%s]"
|
||||
286
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fi.po
Normal file
286
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fi.po
Normal file
|
|
@ -0,0 +1,286 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Pekko Tuomisto <pekko.tuomisto@web-veistamo.fi>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Finnish (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXXXY tai 20XXXXXXXXXXXXY tai 15XXXXXXXXXXY tai 16XXXXXXXXXXY tai "
|
||||
"17XXXXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) tai 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 tai 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Viisitoista numeroa, ensimmäisen ja viimeisen numeron on "
|
||||
"oltava \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 tai 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 tai 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA tai CHE-123.456.788 MWST tai CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 tai CO213.123.432-1"
|
||||
|
||||
#. 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 "Asetukset"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakti"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 tai 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 tai 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Esimerkki: \"219999830019\" (muoto: 12 numeroa, kaikki numerot, kelvollinen "
|
||||
"tarkistusnumero)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Verokanta"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 tai XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 tai 12345678-1-11 tai 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE56121231GR8 tai GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Tekninen kenttä. Näyttää ilmoituksen käyttäjälle, jos VIES-tietokannan "
|
||||
"tarkistus epäonnistuu."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"ALV-tunnuksen %(vat_label)s numero [%(wrong_vat)s] ei näytä kelvolliselta. \n"
|
||||
"Huomaa: odotettu muotoilu on %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"ALV-tunnuksen %(vat_label)s numero [%(wrong_vat)s] tietueelle %(record_label)s ei näytä kelvolliselta. \n"
|
||||
"Huomaa: odotettu muotoilu on %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "ALV-numero %s ei läpäissy VIES VAT tarkistusta."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Tämän ulkomaisen ALV-numeron kohdalla havaittu maa ei vastaa mitään maata, "
|
||||
"joka muodostaa tämän verokannan maaryhmän."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Ulkomaisen ALV-numeron maata ei voitu havaita. Määritä maa verokannalle tai "
|
||||
"aseta maaryhmä"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXXXX [9 numeroa] ja sen on noudatettava Luhnin algoritmin "
|
||||
"tarkistussummaa"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "joko 11 numeroa CPF:n osalta tai 14 numeroa CNPJ:n osalta"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "verokanta [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "kumppani [%s]"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fo.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fo.po
Normal file
|
|
@ -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 ""
|
||||
283
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fr.po
Normal file
283
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fr.po
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: French (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY ou 20XXXXXXXXY ou 15XXXXXXXXY ou 16XXXXXXXXY ou 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 ou 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Quinze chiffres, dont le premier et le dernier doivent être"
|
||||
" \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 ou 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 ou 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA ou CHE-123.456.788 MWST ou CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 ou CO213.123.432-1"
|
||||
|
||||
#. 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 configuration"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 ou 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 ou 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Exemple : '219999830019' (format : 12 chiffres, tous numériques, chiffre de "
|
||||
"contrôle valide)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Position fiscale"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 ou XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 ou 12345678-1-11 ou 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 ou GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Champ technique affichant un message à l'utilisateur en cas d'échec du "
|
||||
"contrôle VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Le numéro %(vat_label)s [%(wrong_vat)s] ne semble pas être valide. \n"
|
||||
"Remarque : le format attendu est %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Le numéro %(vat_label)s [%(wrong_vat)s] pour %(record_label)s ne semble pas être valide. \n"
|
||||
"Remarque : le format attendu est %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "Le numéro de TVA %s a échoué au contrôle de validation VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Le pays détecté pour ce numéro de TVA étranger ne correspond à aucun des "
|
||||
"pays du groupe de pays défini pour cette position fiscale."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Le pays pour ce numéro de TVA étranger n'a pas pu être détecté. Veuillez "
|
||||
"attribuer un pays à la position fiscale ou définir un groupe de pays."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 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 "Vérifier les numéros de TVA en utilisant le service européen VIES"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 chiffres] et doit respecter la somme de contrôle de "
|
||||
"l'algorithme de Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 chiffres pour CPF ou 14 chiffres pour CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "Position fiscale [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partenaire [%s]"
|
||||
62
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fr_BE.po
Normal file
62
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fr_BE.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fr_CA.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/fr_CA.po
Normal file
|
|
@ -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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/gl.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/gl.po
Normal file
|
|
@ -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 ""
|
||||
260
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/gu.po
Normal file
260
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/gu.po
Normal file
|
|
@ -0,0 +1,260 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2023\n"
|
||||
"Language-Team: Gujarati (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Config Settings"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiscal Position"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
272
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/he.po
Normal file
272
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/he.po
Normal file
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# NoaFarkash, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ha Ketem <haketem@gmail.com>, 2024\n"
|
||||
"Language-Team: Hebrew (https://app.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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY או 20XXXXXXXXY או 15XXXXXXXXY או 16XXXXXXXXY או 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 או 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [חמש עשרה ספרות, הראשונה והאחרונה צריכות להיות \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 או 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 או 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA או CHE-123.456.788 MWST או CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 או CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 או 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 או 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "מעמד פיסקלי"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 או XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 או 12345678-1-11 או 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 או GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr "שדה טכני שמציג הודעה למקרה שבדיקת הVIES יוצאת שגויה."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"ה%(vat_label)s מספר [%(wrong_vat)s] נראה שגוי. \n"
|
||||
"הערה: הפורמט הצפוי הנו %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"ה%(vat_label)s שמספרו [%(wrong_vat)s] עבור %(record_label)s שגוי. \n"
|
||||
"הערה: הפורמט הצפוי הנו %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "מספר המע\"מ %s לא עבר את בדיקות האימות של VIES VAT."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 האירופי"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 ספרות] וזה צריך להתאריך לאלגוריתם Luhn checksum"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "מעמד פיסקלי %s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "שותף %s"
|
||||
258
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hi.po
Normal file
258
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hi.po
Normal file
|
|
@ -0,0 +1,258 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2024
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "वित्तीय स्थिति"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "वित्तीय स्थिती [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
276
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hr.po
Normal file
276
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hr.po
Normal file
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2022
|
||||
# Vladimir Vrgoč, 2025
|
||||
# Bole <bole@dajmi5.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2025\n"
|
||||
"Language-Team: Croatian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY ili 20XXXXXXXXY ili 15XXXXXXXXY ili 16XXXXXXXXY ili 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 ili 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [petnaest znamenaka, prva i zadnja moraju biti \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 ili 49098576"
|
||||
|
||||
#. 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 su specifične za "
|
||||
"tvrtku\" aria-label=\"Values set here are company-specific.\" "
|
||||
"groups=\"base.group_multi_company\" role=\"img\"/>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 ili 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA ili CHE-123.456.788 MWST ili CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 ili CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 ili 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 ili 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiskalna pozicija"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 ili XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 ili 12345678-1-11 ili 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 ili GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Tehničko polje prikazuje poruku korisniku ako je VIES provjera neuspješna."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s broj [%(wrong_vat)s] se čini neispravan. \n"
|
||||
"Napomena: Očekivani format je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s broj [%(wrong_vat)s] za %(record_label)s se ne čini ispravnim. \n"
|
||||
"Napomena: očekivani format je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "Porezni broj %s nije prošao validaciju u VIES bazi."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Država detektirana za ovaj strani porezni broj ne odgovara niti jednoj od "
|
||||
"država iz grupe država postavljenih na ovoj fiskalnoj poziciji."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Državu ovog poreznog broja nije moguće odrediti. Molimo dodijelite državu "
|
||||
"fiskalnoj poziciji ili postavite grupu država"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "PDV ID / OIB"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 brojeva] trebalo bi poštivati Luhn algoritam za provjeru"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "između 11 znamenaka za CPF ili 14 znamenaka za CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiskalna pozicija [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
264
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hu.po
Normal file
264
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hu.po
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Zsolt Godó <zsolttokio@gmail.com>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Pénzügyi pozíció"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "Adószám"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hy.po
Normal file
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/hy.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-21 21:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "TR1234567890 (VERGINO) or TR17291716060 (TCKIMLIKNO)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
276
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/id.po
Normal file
276
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/id.po
Normal file
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Abe Manyo, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Indonesian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY atau 20XXXXXXXXY atau 15XXXXXXXXY atau 16XXXXXXXXY or "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) atau 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 atau 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Lima belas bilangan, bilangan pertama dan terakhir harus "
|
||||
"\"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 atau 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 atau 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA atau CHE-123.456.788 MWST atau CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 atau CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 atau 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 atau 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Contoh: '219999830019' (format: 12 digit, semuanya angka, valid check digit)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiscal Position"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 atau XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 atau 12345678-1-11 atau 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 atau GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s nomor [%(wrong_vat)s] sepertinya tidak valid. \n"
|
||||
"Ingat: format yang diharapkan adalah%(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s nomor [%(wrong_vat)s] untuk%(record_label)s sepertinya tidak valid. \n"
|
||||
"Ingat: format yang diharapkan adalah %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Negara yang dideteksi untuk nomor PPN asing ini tidak cocok dengan negara "
|
||||
"apa pun di kelompok negara yang ditetapkan di posisi fiskal ini."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Negara angka PPN asing tidak dapat dideteksi. Silakan tugaskan negara ke "
|
||||
"posisi fiskal atau tetapkan negara kelompok"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "Verifikasi Nomor PPN "
|
||||
|
||||
#. 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 "Verifikasi nomor PPN menggunakan layanan VIES Eropa"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 digit] dan harus mematuhi Luhn algorithm checksum"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "baik 11 bilangan untuk CPF atau 14 bilangan untuk CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "posisi fiskal [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/is.po
Normal file
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/is.po
Normal file
|
|
@ -0,0 +1,257 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Stillingarvalkostir"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Hafa samband"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Staða ríkisfjármála"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
281
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/it.po
Normal file
281
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/it.po
Normal file
|
|
@ -0,0 +1,281 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2023
|
||||
# Marianna Ciofani, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Italian (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr "10XXXXXXXXY o 20XXXXXXXXY o 15XXXXXXXXY o 16XXXXXXXXY o 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) o 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 oppure 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Quindici cifre, la prima e l'ultima cifra dovrebbero "
|
||||
"corrispondere a \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 o 49098576"
|
||||
|
||||
#. 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=\"I valori impostati qui sono specifici "
|
||||
"per azienda.\" groups=\"base.group_multi_company\" role=\"img\"/>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 oppure 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA oppure CHE-123.456.788 MWST oppure CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 oppure CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 oppure 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 oppure 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Esempio: '219999830019' (formato: 12 cifre, numeri, cifra valida assegno)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Posizione fiscale"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 oppure XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 oppure 12345678-1-11 oppure 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 oppure GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Il campo tecnico mostra un messaggio per l'utente se la verifica VIES "
|
||||
"fallisce."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Il numero %(vat_label)s [%(wrong_vat)s] non sembra essere valido.\n"
|
||||
"Nota: il formato previsto è %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Il numero %(vat_label)s [%(wrong_vat)s] per %(record_label)s non sembra essere valido.\n"
|
||||
"Nota: il formato previsto è %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "La partita IVA %s non ha superato il controllo di validità VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Il paese trovato per questa partita IVA estera non corrisponde a nessuno dei"
|
||||
" Paesi che caratterizzano il gruppo impostato su questa posizione fiscale."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Non è stato possibile individuare il Paese corrispondente al numero IVA "
|
||||
"estero. Assegna un Paese alla posizione fiscale o configura un gruppo"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 cifre] e dovrebbe rispettare la somma di controllo "
|
||||
"dell'algoritmo di Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 cifre per CPF oppure 14 cifre per CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "posizione fiscale [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
268
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ja.po
Normal file
268
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ja.po
Normal file
|
|
@ -0,0 +1,268 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Andy Yiu, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Junko Augias, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Japanese (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) または 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 または 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [15桁、最初と最後の数字は \"3\"にして下さい]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 または 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 または 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA または CHE-123.456.788 MWST または CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 または CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 または 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 または 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr "例: '219999830019' (フォーマット: 112桁、全て数字、有効なチェックデジット)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "会計ポジション"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 または XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 または 12345678-1-11 or 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 または GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
" %(vat_label)s 番号 [%(wrong_vat)s] が有効でないようです。\n"
|
||||
"メモ: 予測される形式は %(expected_format)sです。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s 番号 [%(wrong_vat)s] (%(record_label)s 用)が有効ではないようです。\n"
|
||||
"メモ: 予測される形式は %(expected_format)sです。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr "この外国VAT番号で検出された国は、この会計ポジションで設定された国グループのいずれの国とも一致しません。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr "外国VAT番号の国を検出できませんでした。会計ポジションに国を割当てるか、国グループを設定して下さい。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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番号を確認する"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 桁] でLuhnアルゴリズムのチェックサムにならう必要があります。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "CPF用に11桁またはCNPJ用に14桁"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "財政状態 [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "取引先 [%s]"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ka.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ka.po
Normal file
|
|
@ -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: 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=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 ""
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/kab.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/kab.po
Normal file
|
|
@ -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 ""
|
||||
263
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/km.po
Normal file
263
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/km.po
Normal file
|
|
@ -0,0 +1,263 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "ស្ថានភាពសារពើពន្ធ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 អឺរ៉ុប"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
268
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ko.po
Normal file
268
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ko.po
Normal file
|
|
@ -0,0 +1,268 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Sarah Park, 2023
|
||||
# Daye Jeong, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Korean (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY 또는 20XXXXXXXXY 또는 15XXXXXXXXY 또는 16XXXXXXXXY 또는 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) 또는 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 또는 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [15자리, 앞자리와 뒷자리는 \"3\"이어야 합니다.]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 또는 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 또는 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA 또는 CHE-123.456.788 MWST 또는 CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 또는 CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 또는 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 또는 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr "예: '219999830019' (형식: 12자리, 모든 유효한 숫자)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "재정 상태"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 또는 XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 또는 12345678-1-11 또는 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 또는 GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr "기술 필드에서는 VIES 확인이 실패한 경우 사용자에게 메시지를 표시합니다."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"유효하지 않은%(vat_label)s 숫자 [%(wrong_vat)s]입니다.\n"
|
||||
"메모: 예상 서식은 %(expected_format)s입니다. "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(record_label)s로 유효하지 않은 %(vat_label)s 숫자 [%(wrong_vat)s]입니다.\n"
|
||||
"메모: 예상 서식은 %(expected_format)s입니다."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr "이 해외 VAT 번호로 등록된 국가가 이 재정 위치에 설정된 국가 그룹 중 어느 국가와도 일치하지 않습니다."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr "해외 VAT 번호의 국가를 확인할 수 없습니다. 재정 위치에 국가를 부여하거나 국가 그룹을 설정하세요."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 서비스를 사용하여 부가가치세 번호 확인"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9자리]이며, Luhn 알고리즘 체크섬을 준수해야 합니다."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "CPF의 경우 11자리 또는 CNPJ의 경우 14자리입니다."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "재정 상태 [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "협력사 [%s]"
|
||||
85
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lb.po
Normal file
85
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lb.po
Normal file
|
|
@ -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 ""
|
||||
259
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lo.po
Normal file
259
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lo.po
Normal file
|
|
@ -0,0 +1,259 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
271
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lt.po
Normal file
271
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lt.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Asta Kasinskaitė, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Asta Kasinskaitė, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Mokestinė aplinka"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Įvestas %(vat_label)s [%(wrong_vat)s] nėra galiojantis. \n"
|
||||
"Patikrinkite: teisingas formatas yra %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Įvestas %(vat_label)s [%(wrong_vat)s] %(record_label)s nėra galiojantis. \n"
|
||||
"Patikrinkite: teisingas formatas yra %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "PVM mok. kodo %s VIES patvirtinimo patikra nepavyko."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "PVM mok. kodas"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
274
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lv.po
Normal file
274
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/lv.po
Normal file
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Artjoms Ustinovs <artyom.ustinov2010@yandex.ru>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2025\n"
|
||||
"Language-Team: Latvian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY vai 20XXXXXXXXY vai 15XXXXXXXXY vai 16XXXXXXXXY vai 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) vai 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 vai 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Piecpadsmit cipari, pirmajam un pēdējam ciparam jābūt "
|
||||
"\"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 vai 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 vai 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA vai CHE-123.456.788 MWST vai CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 vai CO213.123.432-1"
|
||||
|
||||
#. 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 uzstādījumi"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakts"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 vai 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 vai 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Nodokļu Profils"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 vai XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 vai 12345678-1-11, vai 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 vai GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s numurs [%(wrong_vat)s] neizskatās derīgs. \n"
|
||||
"Piezīme: paredzamais formāts %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s numurs [%(wrong_vat)s] priekš %(record_label)s neizskatās derīgs. \n"
|
||||
"Piezīme: paredzamais formāts %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Valsts, kas konstatēta šim ārvalstu PVN numuram, neatbilst nevienai no "
|
||||
"valstīm, kas veido šai fiskālajai pozīcijai iestatīto valstu grupu."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Valsts ar ārzemju PVN numuru netika atrasta. Lūdzu, piešķiriet valsti "
|
||||
"fiskālajai pozīcijai vai iestatiet valstu grupu"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "Verificēt PVN numurus"
|
||||
|
||||
#. 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 "Verificēt PVN numurus izmantojot Eiropas VIES pakalpojumu"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 skaitļi] un tam ir jāievēro Luhn algoritma kontrolsumma"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "vai 11 skaitļi priekš CPF vai 14 skaitļi priekš CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiskālā pozīcija [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partneris [%s]"
|
||||
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/mk.po
Normal file
74
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/mk.po
Normal file
|
|
@ -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 ""
|
||||
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ml.po
Normal file
257
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ml.po
Normal file
|
|
@ -0,0 +1,257 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "ഫിസ്കൽ പൊസിഷൻ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/mn.po
Normal file
267
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/mn.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# nurbakhit nurka <nurbakhit@bumanit.mn>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Mongolian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Татварын тайлангийн тохируулга"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
263
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ms.po
Normal file
263
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ms.po
Normal file
|
|
@ -0,0 +1,263 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
# Imran Pathan, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Imran Pathan, 2024\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Syarikat"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Tetapan Konfigurasi"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kenalan"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiscal Position"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
261
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/nb.po
Normal file
261
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/nb.po
Normal file
|
|
@ -0,0 +1,261 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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 "Innstillinger"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Avgiftsregel"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
71
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ne.po
Normal file
71
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ne.po
Normal file
|
|
@ -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 ""
|
||||
288
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/nl.po
Normal file
288
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/nl.po
Normal file
|
|
@ -0,0 +1,288 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Dutch (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY of 20XXXXXXXXY of 15XXXXXXXXY of 16XXXXXXXXY of 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) of 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 of 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Vijftien cijfers, eerste en laatste cijfers moeten \"3\" "
|
||||
"zijn]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 of 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 of 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA of CHE-123.456.788 MWST of CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 of CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 of 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 of 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Voorbeeld: ‘219999830019’ (formaat: 12 cijfers, alleen getallen, geldige "
|
||||
"controlecijfer)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiscale positie"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 of XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 of 12345678-1-11 of 8071592153"
|
||||
|
||||
#. 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 kun je geen contactpersoon meer opslaan "
|
||||
"als de BTW nummer niet geverifieerd kan worden door de Europese VIES "
|
||||
"service."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 of GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Technisch veld geeft een bericht weer aan de gebruiker als de VIES-controle "
|
||||
"mislukt."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Het nummer %(vat_label)s [%(wrong_vat)s] lijkt niet geldig. \n"
|
||||
"Opgelet: het verwachte formaat is %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Het nummer %(vat_label)s [%(wrong_vat)s] voor %(record_label)s lijkt niet geldig. \n"
|
||||
"Opgelet: het verwachte formaat is %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
"Het BTW-nummer %s heeft de BTW-validatiecontrole van VIES niet doorstaan."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Het gedetecteerde land voor dit buitenlandse btw-nummer komt niet overeen "
|
||||
"met een van de landen binnen de ingestelde landengroep voor deze fiscale "
|
||||
"positie."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Het land van het buitenlandse btw-nummer kon niet worden gedetecteerd. Wijs "
|
||||
"een land toe aan de fiscale positie of stel een landengroep in"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 cijfers] en de Luhn-algoritme-controlesom moet worden "
|
||||
"gerespecteerd"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "ofwel 11 cijfers voor CPF of 14 cijfers voor CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiscale positie [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "relatie [%s]"
|
||||
253
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/no.po
Normal file
253
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/no.po
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/pl.po
Normal file
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/pl.po
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Rafał Kozak <rafal.kozak@openglobe.pl>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2023
|
||||
# Marta Wacławek, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Marta Wacławek, 2025\n"
|
||||
"Language-Team: Polish (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Obszar podatkowy"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Pole techniczne wyświetla komunikat dla użytkownika, jeśli sprawdzenie VIES "
|
||||
"zakończy się niepowodzeniem."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s liczba [%(wrong_vat)s] nie wydaje się być prawidłowa. \n"
|
||||
"Uwaga: oczekiwany format to %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s liczba [%(wrong_vat)s] dla %(record_label)s nie wydaje się być prawidłowa. \n"
|
||||
"Uwaga: oczekiwany format to %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
"Numer VAT %s nie przeszedł pomyślnie kontroli poprawności VAT w systemie "
|
||||
"VIES."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "pozycja fiskalna [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
264
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/pt.po
Normal file
264
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/pt.po
Normal file
|
|
@ -0,0 +1,264 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Nuno Silva <nuno.silva@arxi.pt>, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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=\"Estes valores são específicos"
|
||||
" por empresa.\" aria-label=\"Values set here are company-specific.\" "
|
||||
"groups=\"base.group_multi_company\" role=\"img\"/>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Posição Fiscal"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
279
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/pt_BR.po
Normal file
279
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
# Maitê Dietze, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY ou 20XXXXXXXXY ou 15XXXXXXXXY ou 16XXXXXXXXY ou 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) pu 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 ou 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Quinze dígitos, o primeiro e o último dígitos devem ser "
|
||||
"\"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 ou 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 ou 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA ou CHE-123.456.788 MWST ou CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 ou CO213.123.432-1"
|
||||
|
||||
#. 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 "Contato"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 ou 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 ou 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Exemplo: '219999830019' (formato: 12 dígitos, todos os números, dígito de "
|
||||
"verificação válido)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Posição Fiscal"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 ou XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 ou 12345678-1-11 ou 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 ou GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"O número %(vat_label)s [%(wrong_vat)s] não parece ser válido. \n"
|
||||
"Observação: o formato esperado é %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"O número %(vat_label)s [%(wrong_vat)s] para %(record_label)s não parece ser válido. \n"
|
||||
"Observação: o formato esperado é %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"O país detectado para este número de identificação fiscal estrangeiro não "
|
||||
"corresponde a nenhum dos países que compõem o grupo de países definido nesta"
|
||||
" posição fiscal."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Não foi possível detetar o país do número de identificação fiscal "
|
||||
"estrangeiro. Atribua um país à posição fiscal ou defina um grupo de países"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "Verificar números de 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 os números de IVA usando o serviço VIES europeu"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXXXX [9 dígitos] e deve respeitar a soma de verificação do algoritmo "
|
||||
"Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 dígitos para CPF ou 14 dígitos para CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "posição fiscal [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "usuário [%s]"
|
||||
283
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ro.po
Normal file
283
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ro.po
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2024
|
||||
# Alin Miclea, 2024
|
||||
# Larisa_nexterp, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Larisa_nexterp, 2025\n"
|
||||
"Language-Team: Romanian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) sau 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 or 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Cincisprezece cifre, prima și ultima cifră ar trebui să fie"
|
||||
" \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 or 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 or 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 or CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 or 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 or 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Exemplu: '219999830019' (format: 12 cifre, doar numere, cifră de control "
|
||||
"validă)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Poziție fiscală"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 or XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 or GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Numărul de %(vat_label)s [%(wrong_vat)s] nu pare a fi valid. \n"
|
||||
"Notă: formatul așteptat este %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Numărul de %(vat_label)s [%(wrong_vat)s] pentru %(record_label)s nu pare a fi valid. \n"
|
||||
"Notă: formatul așteptat este %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Țara detectată pentru acest număr de TVA străin nu se potrivește cu niciuna "
|
||||
"dintre țările care compun grupul de țări stabilit pe această poziție "
|
||||
"fiscală."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Țara numărului de TVA străin nu a putut fi detectată.Vă rugăm să atribuiți o"
|
||||
" țară poziției fiscale sau să stabiliți un grup de țări"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 cifre] și trebuie să respecte suma de control a algoritmului "
|
||||
"Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "fie 11 cifre pentru CPF, fie 14 cifre pentru CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "poziție fiscală [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partener [%s]"
|
||||
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ru.po
Normal file
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ru.po
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Ilya Rozhkov, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Ilya Rozhkov, 2025\n"
|
||||
"Language-Team: Russian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY или 20XXXXXXXXY или 15XXXXXXXXY или 16XXXXXXXXY или 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (ИНН) или 1729171602 (КПП)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 или 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Пятнадцать цифр, первая и последняя цифры должны быть «3»]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 или 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 или 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA или CHE-123.456.788 MWST или CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 или CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 или 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 или 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr "Пример: «219999830019» (12 цифр, только числа, с проверочной цифрой)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Система налогов"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 или XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 или 12345678-1-11 или 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 или GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Число %(vat_label)s [%(wrong_vat)s], по-видимому, не является действительным.\n"
|
||||
"Примечание: ожидаемый формат - %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Число %(vat_label)s [%(wrong_vat)s] для %(record_label)s, похоже, не подходит.\n"
|
||||
"Примечание: ожидаемый формат - %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Страна, связанная с этим иностранным номером НДС, не входит в группу стран, "
|
||||
"указанную в данной налоговой позиции."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Не удалось определить страну иностранного номера НДС. Укажите страну или "
|
||||
"группу стран в налоговой позиции."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 цифр], должен соответствовать контрольной сумме по алгоритму "
|
||||
"Луна."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "Либо 11 цифр для CPF, либо 14 цифр для CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "налоговая позиция [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "партнер [%s]"
|
||||
262
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sk.po
Normal file
262
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sk.po
Normal file
|
|
@ -0,0 +1,262 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovak (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiškálna pozícia"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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 ""
|
||||
"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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
280
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sl.po
Normal file
280
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sl.po
Normal file
|
|
@ -0,0 +1,280 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Boris Kodelja <boris@hbs.si>, 2022
|
||||
# Grega Vavtar <grega@hbs.si>, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2023
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY ali 20XXXXXXXXY ali 15XXXXXXXXY ali 16XXXXXXXXY ali 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) ali 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 ali 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [Petnajst števk, prva in zadnja števka morata biti \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 ali 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 ali 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA ali CHE-123.456.788 MWST ali CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 ali CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 ali 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 ali 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Primer: '219999830019' (format: 12 števk, vse številke, veljavna kontrolna "
|
||||
"številka)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Davčno območje"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 ali XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 ali 12345678-1-11 ali 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 ali GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
" %(vat_label)s Številka [%(wrong_vat)s] se ne zdi veljavna. \n"
|
||||
"Opomba: pričakovana oblika je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s Številka [%(wrong_vat)s] za %(record_label)s se ne zdi veljavna. \n"
|
||||
"Opomba: pričakovana oblika je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Država, zaznana za to tujo številko DDV, se ne ujema z nobeno od držav, ki "
|
||||
"sestavljajo skupino držav, določeno za ta fiskalni položaj."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Države tuje številke za DDV ni bilo mogoče zaznati. Prosimo, dodelite državo"
|
||||
" fiskalnemu položaju ali nastavite skupino držav."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 številk] in mora upoštevati kontrolno vsoto Luhnovega algoritma"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 številk za CPF ali 14 številk za CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiskalni položaj [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sq.po
Normal file
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sq.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-21 21:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Albanian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "TR1234567890 (VERGINO) or TR17291716060 (TCKIMLIKNO)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
266
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sr.po
Normal file
266
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sr.po
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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_config_settings
|
||||
msgid "Config Settings"
|
||||
msgstr "Podešavanje konfiguracije"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Fiskalna pozicija"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Broj %(vat_label)s [%(wrong_vat)s] se ne čini validnim. \n"
|
||||
"Napomena: očekivani format je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Broj %(vat_label)s [%(wrong_vat)s] za %(record_label)s se ne čini validnim. \n"
|
||||
"Napomena: očekivani format je %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 "Proverite PIB 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 "Proverite PIB brojeve koristeći evropsku VIES uslugu"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "fiskalni položaj [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "partner [%s]"
|
||||
75
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sr@latin.po
Normal file
75
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sr@latin.po
Normal file
|
|
@ -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 ""
|
||||
285
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sv.po
Normal file
285
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sv.po
Normal file
|
|
@ -0,0 +1,285 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Simon S, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2022
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Daniel Osser <danielosser@gmail.com>, 2022
|
||||
# Lasse L, 2024
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Swedish (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY eller 20XXXXXXXXY eller 15XXXXXXXXY eller 16XXXXXXXXY eller "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 eller 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [Femton siffror, första och sista siffran ska vara \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 eller 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 eller 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA eller CHE-123.456.788 MWST eller CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 eller CO213.123.432-1"
|
||||
|
||||
#. 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 "Inställningar"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_res_partner
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 eller 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 eller 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Skatteområde"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 eller XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 eller 12345678-1-11 eller 8071592153"
|
||||
|
||||
#. 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 ""
|
||||
"Om denna kryssruta är förkryssad kommer du inte kunna spara kontakten om "
|
||||
"momsregistreringsnumret inte kan verifieras av VIES-tjänsten."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 eller GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Tekniska fält visar ett meddelande till användaren om VIES-kontrollen "
|
||||
"misslyckas."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Siffran %(vat_label)s [%(wrong_vat)s] verkar inte vara giltig.\n"
|
||||
"Observera: det förväntade formatet är %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Numret %(vat_label)s [%(wrong_vat)s] för %(record_label)s verkar inte vara giltigt.\n"
|
||||
"Observera: det förväntade formatet är %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "Momsnumret %s klarade inte VIES valideringskontroll för moms."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Landet som identifierats för detta utländska momsnummer matchar inte något "
|
||||
"av länderna som utgör den landsgrupp som är inställd på denna "
|
||||
"skatteposition."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Landet för det utländska VAT-numret kunde inte identifieras. Vänligen "
|
||||
"tilldela ett land till den skattemässiga positionen eller ange en landsgrupp"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "Skattenummer"
|
||||
|
||||
#. 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 "Verifiera momsregistreringsnummer"
|
||||
|
||||
#. 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 "Verifiera momsregistreringsnummer med VIES-tjänsten"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 siffror] och den bör respektera Luhn-algoritmens kontrollsumma"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "antingen 11 siffror för CPF eller 14 siffror för CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "skatteregion [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "företag [%s]"
|
||||
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sw.po
Normal file
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/sw.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-21 21:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "TR1234567890 (VERGINO) or TR17291716060 (TCKIMLIKNO)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ta.po
Normal file
237
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/ta.po
Normal file
|
|
@ -0,0 +1,237 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-21 21:59+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "TR1234567890 (VERGINO) or TR17291716060 (TCKIMLIKNO)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr ""
|
||||
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/th.po
Normal file
278
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/th.po
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Martin Trigaux, 2023
|
||||
# Rasareeyar Lappiam, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Thai (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY หรือ 20XXXXXXXXY หรือ 15XXXXXXXXY หรือ 16XXXXXXXXY หรือ "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) หรือ 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 หรือ 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [สิบห้าหลัก ตัวแรกและตัวสุดท้ายควรเป็น \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 หรือ 49098576"
|
||||
|
||||
#. 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=\"ค่าที่ตั้งไว้นี้เป็นค่าเฉพาะบริษัท\" "
|
||||
"groups=\"base.group_multi_company\" role=\"img\"/>"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 หรือ 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA หรือ CHE-123.456.788 MWST หรือ CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 หรือ CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 หรือ 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 หรือ 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"ตัวอย่าง: '219999830019' (รูปแบบ: 12 หลัก ตัวเลขทั้งหมด "
|
||||
"หลักตรวจสอบที่ถูกต้อง)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "ฐานะทางการเงิน"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 หรือ XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 หรือ 12345678-1-11 หรือ 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 หรือ GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"ดูเหมือนว่าหมายเลข %(vat_label)s [%(wrong_vat)s] จะไม่ถูกต้อง\n"
|
||||
"หมายเหตุ: รูปแบบที่ต้องการคือ %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"ดูเหมือนว่าหมายเลข %(vat_label)s [%(wrong_vat)s] สำหรับ %(record_label)s จะไม่ถูกต้อง\n"
|
||||
"หมายเหตุ: รูปแบบที่ต้องการคือ %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"ประเทศที่ตรวจพบสำหรับหมายเลขภาษีมูลค่าเพิ่มต่างประเทศนี้ไม่ตรงกับประเทศใดๆ "
|
||||
"ที่ประกอบเป็นกลุ่มประเทศที่กำหนดไว้สำหรับตำแหน่งทางการเงินนี้"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"ไม่สามารถตรวจพบหมายเลขภาษีมูลค่าเพิ่มของประเทศต่างประเทศได้ "
|
||||
"โปรดกำหนดประเทศให้กับสถานะทางการเงินหรือตั้งค่ากลุ่มประเทศ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 หลัก] และควรปฏิบัติตามผลรวมการตรวจสอบของอัลกอริทึม Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "CPF 11 หลัก หรือ CNPJ 14 หลัก"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "สถานะทางการเงิน [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "พาร์ทเนอร์ [%s]"
|
||||
282
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/tr.po
Normal file
282
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/tr.po
Normal file
|
|
@ -0,0 +1,282 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
# Ayhan Kızıltan, 2024
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2024
|
||||
# Deniz Guvener_Odoo <degu@odoo.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Deniz Guvener_Odoo <degu@odoo.com>, 2025\n"
|
||||
"Language-Team: Turkish (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY veya 20XXXXXXXXY veya 15XXXXXXXXY veya 16XXXXXXXXY veya "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) veya 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 veya 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [On beş hane, ilk ve son haneler \"3\" olmalı]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 veya 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 veya 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA veya CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr ""
|
||||
|
||||
#. 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 "Kontak"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Mali Koşul"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 veya 12345678-1-11 veya 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Teknik alan, VIES kontrolü başarısız olursa kullanıcıya bir mesaj "
|
||||
"görüntüler."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s numarası [%(wrong_vat)s] geçerli görünmüyor.\n"
|
||||
"Not: beklenen biçim %(expected_format)s."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(record_label)s için %(vat_label)s numarası [%(wrong_vat)s] geçerli görünmüyor.\n"
|
||||
"Not: beklenen biçim %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "KDV numarası %s, VIES KDV doğrulama kontrolünde başarısız oldu."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Bu yabancı KDV numarası için tespit edilen ülke, bu mali pozisyonda "
|
||||
"belirlenen ülke grubunu oluşturan ülkelerden hiçbiriyle eşleşmiyor."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Yabancı KDV numarasının ülkesi tespit edilemedi. Lütfen mali koşula bir ülke"
|
||||
" atayın veya bir ülke grubu ayarlayın"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "VAT"
|
||||
msgstr "VKN/TCKN"
|
||||
|
||||
#. 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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "CPF için 11 hane veya CNPJ için 14 hane olmalıdır."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "mali koşul [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "kontak [%s]"
|
||||
279
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/uk.po
Normal file
279
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/uk.po
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2025\n"
|
||||
"Language-Team: Ukrainian (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY або 20XXXXXXXXY або 15XXXXXXXXY або 16XXXXXXXXY або 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) або 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 або 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [15 цифр, перша та остання повинні бути \"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 або 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 або 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA або CHE-123.456.788 MWST або CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 або CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 або 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 або 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Приклад: '219999830019' (формат: 12 знаків, всі цифри, дійсна контрольна "
|
||||
"цифра)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Схема оподаткування"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 або XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 або 12345678-1-11 або 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 або GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
"Технічне поле відображає повідомлення для користувача, якщо перевірка VIES "
|
||||
"не вдається."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s номер [%(wrong_vat)s] здається недійсним. \n"
|
||||
"Примітка: очікуваний формат %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s номер [%(wrong_vat)s] для %(record_label)s здається недійсним. \n"
|
||||
"Примітка: очікуваний формат %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "ІПН %s не пройшов перевірку VIES VAT."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Країна, визначена для цього іноземного номера платника ПДВ, не збігається з "
|
||||
"жодною з країн, що входять до групи країн, встановленої для цієї схеми "
|
||||
"оподаткування."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Не вдалося визначити країну іноземного номера ПДВ. Призначте країну для "
|
||||
"схеми оподаткування або встановіть групу країн"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr ""
|
||||
"XXXXXXXXX [9 цифр], і він повинен відповідати контрольній сумі алгоритму "
|
||||
"Луна"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 цифр дял CPF або 14 цифр для CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "схема оподаткування [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "партнер [%s]"
|
||||
281
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/vi.po
Normal file
281
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/vi.po
Normal file
|
|
@ -0,0 +1,281 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Thi Huong Nguyen, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Vietnamese (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr ""
|
||||
"10XXXXXXXXY hoặc 20XXXXXXXXY hoặc 15XXXXXXXXY hoặc 16XXXXXXXXY hoặc "
|
||||
"17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) hoặc 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 hoặc 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr ""
|
||||
"310175397400003 [Mười lăm chữ số, chữ số đầu tiên và cuối cùng phải là "
|
||||
"\"3\"]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 hoặc 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 hoặc 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr ""
|
||||
"CHE-123.456.788 TVA hoặc CHE-123.456.788 MWST hoặc CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 hoặc CO213.123.432-1"
|
||||
|
||||
#. 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 "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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 hoặc 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 hoặc 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr ""
|
||||
"Ví dụ: '219999830019' (định dạng: 12 chữ số, tất cả đều là số, chữ số kiểm "
|
||||
"tra hợp lệ)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "Vị thế tài chính"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 hoặc XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 hoặc 12345678-1-11 hoặc 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 hoặc GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Mã số %(vat_label)s [%(wrong_vat)s] có vẻ không hợp lệ. \n"
|
||||
"Lưu ý: định dạng hợp lệ là %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"Mã số %(vat_label)s [%(wrong_vat)s] cho %(record_label)s có vẻ không hợp lệ. \n"
|
||||
"Lưu ý: định dạng hợp lệ là %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr ""
|
||||
"Quốc gia được phát hiện cho mã số thuế GTGT nước ngoài này không khớp với "
|
||||
"bất kỳ quốc gia nào trong nhóm quốc gia được thiết lập trên vị trí tài chính"
|
||||
" này."
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr ""
|
||||
"Không thể phát hiện quốc gia của mã số thuế GTGT nước ngoài. Vui lòng chỉ "
|
||||
"định quốc gia cho vị trí tài chính hoặc thiết lập nhóm quốc gia"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 chữ số] và phải tuân thủ checksum thuật toán Luhn"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "11 chữ số cho CPF hoặc 14 chữ số cho CNPJ"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "vị trí tài chính [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "đối tác [%s]"
|
||||
268
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/zh_CN.po
Normal file
268
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,268 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2022
|
||||
# Emily Jia <eji@odoo.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2024
|
||||
# Chloe Wang, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Chinese (China) (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr "10XXXXXXXXY 或 20XXXXXXXXY 或 15XXXXXXXXY 或 16XXXXXXXXY 或 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060 (NIN) 或 1729171602 (VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 或 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003 [15 位数字,第一位和最后一位数字应为 3]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 或 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 或 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA 或 CHE-123.456.788 MWST 或 CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 或 CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 或 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 或 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr "例如:“219999830019”(格式:12 位数,全部为数字,有效校验数位)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "财政状况"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 或 XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 或 12345678-1-11 或 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 或 GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr "如果VIES检查失败,技术字段将向用户显示消息。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s数字[%(wrong_vat)s]似乎无效。\n"
|
||||
"注:预期格式为%(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s数字[%(wrong_vat)s]用于%(record_label)s,似乎无效。\n"
|
||||
"注:预期格式为%(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr "增值税编号%s未通过VIES增值税验证检查。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr "为此外国增值税号检测到的国家/地区,与此财务规则所设定的国家/地区组中的任何国家/地区都不一致。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr "无法检测到外国增值税号所在的国家/地区。请为财务规则指定一个国家/地区,或国家/地区组别。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 服务验证增值税号码"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 位数],并应遵守卢恩校验和"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "CPF 为 11 位数,或 CNPJ 为 14 位数"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "财政状况[%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "业务伙伴[%s]"
|
||||
266
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/zh_TW.po
Normal file
266
odoo-bringout-oca-ocb-base_vat/base_vat/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_vat
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2025
|
||||
# Tony Ng, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:27+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Tony Ng, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY"
|
||||
msgstr "10XXXXXXXXY 或 20XXXXXXXXY 或 15XXXXXXXXY 或 16XXXXXXXXY 或 17XXXXXXXXY"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "17291716060 (NIN) or 1729171602 (VKN)"
|
||||
msgstr "17291716060(NIN)或 1729171602(VKN)"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "1792060346001 or 1792060346"
|
||||
msgstr "1792060346001 或 1792060346"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "3101012009"
|
||||
msgstr "3101012009"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "310175397400003 [Fifteen digits, first and last digits should be \"3\"]"
|
||||
msgstr "310175397400003【十五位數字,第一及最後一位數字應為 3】"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "49-098-576 or 49098576"
|
||||
msgstr "49-098-576 或 49098576"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "AR200-5536168-2 or 20055361682"
|
||||
msgstr "AR200-5536168-2 或 20055361682"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CHE-123.456.788 TVA or CHE-123.456.788 MWST or CHE-123.456.788 IVA"
|
||||
msgstr "CHE-123.456.788 TVA 或 CHE-123.456.788 MWST 或 CHE-123.456.788 IVA"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "CO213123432-1 or CO213.123.432-1"
|
||||
msgstr "CO213123432-1 或 CO213.123.432-1"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DE123456788 or 12/345/67890"
|
||||
msgstr "DE123456788 或 12/345/67890"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "DO1-01-85004-3 or 101850043"
|
||||
msgstr "DO1-01-85004-3 或 101850043"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"
|
||||
msgstr "例:219999830019(格式:12 位,全部數字,核對位數須有效)"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model,name:base_vat.model_account_fiscal_position
|
||||
msgid "Fiscal Position"
|
||||
msgstr "財政狀況"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "GB123456782 or XI123456782"
|
||||
msgstr "GB123456782 或 XI123456782"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "HU12345676 or 12345678-1-11 or 8071592153"
|
||||
msgstr "HU12345676 或 12345678-1-11 或 8071592153"
|
||||
|
||||
#. 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
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "MXGODE561231GR8 or GODE561231GR8"
|
||||
msgstr "MXGODE561231GR8 或 GODE561231GR8"
|
||||
|
||||
#. module: base_vat
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_partner__vies_failed_message
|
||||
#: model:ir.model.fields,field_description:base_vat.field_res_users__vies_failed_message
|
||||
msgid "Technical field display a message to the user if the VIES check fails."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s 數字 [%(wrong_vat)s] 似乎無效。\n"
|
||||
"註:預期格式為 %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \n"
|
||||
"Note: the expected format is %(expected_format)s"
|
||||
msgstr ""
|
||||
"%(vat_label)s 數字 [%(wrong_vat)s] 用於 %(record_label)s 似乎無效。\n"
|
||||
"註:預期格式為 %(expected_format)s"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "The VAT number %s failed the VIES VAT validation check."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country detected for this foreign VAT number does not match any of the "
|
||||
"countries composing the country group set on this fiscal position."
|
||||
msgstr "為此外國增值稅號碼偵測到的國家/地區,與此財務規則所設定的國家/地區組別內的任何國家/地區,都不相符。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The country of the foreign VAT number could not be detected. Please assign a"
|
||||
" country to the fiscal position or set a country group"
|
||||
msgstr "未能偵測該外國增值稅號碼所在的國家/地區。請為相關財務規則設定一個國家/地區,或國家/地區組別。"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
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 服務驗證統一編號"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum"
|
||||
msgstr "XXXXXXXXX [9 位數] 並應尊重 Luhn 演算法的核對和"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "either 11 digits for CPF or 14 digits for CNPJ"
|
||||
msgstr "CPF 為 11 位數字,或者 CNPJ 則是 14 位數字"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/account_fiscal_position.py:0
|
||||
#, python-format
|
||||
msgid "fiscal position [%s]"
|
||||
msgstr "財政狀況 [%s]"
|
||||
|
||||
#. module: base_vat
|
||||
#. odoo-python
|
||||
#: code:addons/base_vat/models/res_partner.py:0
|
||||
#, python-format
|
||||
msgid "partner [%s]"
|
||||
msgstr "合作夥伴 [%s]"
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import account_fiscal_position
|
||||
from . import res_config_settings
|
||||
from . import res_company
|
||||
from . import res_partner
|
||||
|
|
@ -0,0 +1,60 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from odoo import api, models, _
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
|
||||
class AccountFiscalPosition(models.Model):
|
||||
_inherit = 'account.fiscal.position'
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
new_vals = []
|
||||
for vals in vals_list:
|
||||
new_vals.append(self.adjust_vals_country_id(vals))
|
||||
return super().create(new_vals)
|
||||
|
||||
def write(self, vals):
|
||||
vals = self.adjust_vals_country_id(vals)
|
||||
return super().write(vals)
|
||||
|
||||
def adjust_vals_country_id(self, vals):
|
||||
foreign_vat = vals.get('foreign_vat')
|
||||
country_group_id = vals.get('country_group_id')
|
||||
if foreign_vat and country_group_id and not (self.country_id or vals.get('country_id')):
|
||||
vals['country_id'] = self.env['res.country.group'].browse(country_group_id).country_ids.filtered(lambda c: c.code == foreign_vat[:2].upper()).id or False
|
||||
return vals
|
||||
|
||||
@api.constrains('country_id', 'foreign_vat')
|
||||
def _validate_foreign_vat(self):
|
||||
for record in self:
|
||||
if not record.foreign_vat:
|
||||
continue
|
||||
|
||||
if record.country_group_id:
|
||||
# Checks the foreign vat is a VAT Number linked to a country of the country group
|
||||
foreign_vat_country = self.country_group_id.country_ids.filtered(lambda c: c.code == record.foreign_vat[:2].upper())
|
||||
if not foreign_vat_country:
|
||||
raise ValidationError(_("The country detected for this foreign VAT number does not match any of the countries composing the country group set on this fiscal position."))
|
||||
if record.country_id:
|
||||
checked_country_code = self.env['res.partner']._run_vat_test(record.foreign_vat, record.country_id) or self.env['res.partner']._run_vat_test(record.foreign_vat, foreign_vat_country)
|
||||
if not checked_country_code:
|
||||
record.raise_vat_error_message(foreign_vat_country)
|
||||
else:
|
||||
checked_country_code = self.env['res.partner']._run_vat_test(record.foreign_vat, foreign_vat_country)
|
||||
if not checked_country_code:
|
||||
record.raise_vat_error_message(record.country_id)
|
||||
elif record.country_id:
|
||||
foreign_vat_country = self.env['res.country'].search([('code', '=', record.foreign_vat[:2].upper())], limit=1)
|
||||
checked_country_code = self.env['res.partner']._run_vat_test(record.foreign_vat, foreign_vat_country or record.country_id)
|
||||
if not checked_country_code:
|
||||
record.raise_vat_error_message()
|
||||
|
||||
if record.foreign_vat and not record.country_id and not record.country_group_id:
|
||||
raise ValidationError(_("The country of the foreign VAT number could not be detected. Please assign a country to the fiscal position or set a country group"))
|
||||
|
||||
def raise_vat_error_message(self, country=False):
|
||||
fp_label = _("fiscal position [%s]", self.name)
|
||||
country_code = country.code.lower() if country else self.country_id.code.lower()
|
||||
error_message = self.env['res.partner']._build_vat_error_message(country_code, self.foreign_vat, fp_label)
|
||||
raise ValidationError(error_message)
|
||||
|
|
@ -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')
|
||||
|
|
@ -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')
|
||||
875
odoo-bringout-oca-ocb-base_vat/base_vat/models/res_partner.py
Normal file
875
odoo-bringout-oca-ocb-base_vat/base_vat/models/res_partner.py
Normal file
|
|
@ -0,0 +1,875 @@
|
|||
import datetime
|
||||
import string
|
||||
import re
|
||||
import stdnum
|
||||
from stdnum.eu.vat import check_vies
|
||||
from stdnum.exceptions import InvalidComponent, InvalidChecksum, InvalidFormat
|
||||
from stdnum.util import clean
|
||||
from stdnum import luhn
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import api, models, fields, 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',
|
||||
'br': _('either 11 digits for CPF or 14 digits for CNPJ'),
|
||||
'cr': _('3101012009'),
|
||||
'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 or 12/345/67890'),
|
||||
'dk': 'DK12345674',
|
||||
'do': _('DO1-01-85004-3 or 101850043'),
|
||||
'ec': _('1792060346001 or 1792060346'),
|
||||
'ee': 'EE123456780',
|
||||
'es': 'ESA12345674',
|
||||
'fi': 'FI12345671',
|
||||
'fr': 'FR23334175221',
|
||||
'gb': _('GB123456782 or XI123456782'),
|
||||
'gr': 'EL123456783',
|
||||
'hu': _('HU12345676 or 12345678-1-11 or 8071592153'),
|
||||
'hr': 'HR01234567896', # Croatia, contributed by Milan Tribuson
|
||||
'id': '1234567890123456',
|
||||
'ie': 'IE1234567FA',
|
||||
'il': _('XXXXXXXXX [9 digits] and it should respect the Luhn algorithm checksum'),
|
||||
'in': "12AAAAA1234AAZA",
|
||||
'is': 'IS062199',
|
||||
'it': 'IT12345670017',
|
||||
'lt': 'LT123456715',
|
||||
'lu': 'LU12345613',
|
||||
'lv': 'LV41234567891',
|
||||
'mc': 'FR53000004605',
|
||||
'mt': 'MT12345634',
|
||||
'mx': _('MXGODE561231GR8 or GODE561231GR8'),
|
||||
'nl': 'NL123456782B90',
|
||||
'no': 'NO123456785',
|
||||
'nz': _('49-098-576 or 49098576'),
|
||||
'pe': _('10XXXXXXXXY or 20XXXXXXXXY or 15XXXXXXXXY or 16XXXXXXXXY or 17XXXXXXXXY'),
|
||||
'ph': '123-456-789-123',
|
||||
'pl': 'PL1234567883',
|
||||
'pt': 'PT123456789',
|
||||
'ro': 'RO1234567897',
|
||||
'rs': 'RS101134702',
|
||||
'ru': 'RU123456789047',
|
||||
'se': 'SE123456789701',
|
||||
'si': 'SI12345679',
|
||||
'sk': 'SK2022749619',
|
||||
'sm': 'SM24165',
|
||||
'tr': _('17291716060 (NIN) or 1729171602 (VKN)'),
|
||||
'uy': _("Example: '219999830019' (format: 12 digits, all numbers, valid check digit)"),
|
||||
've': 'V-12345678-1, V123456781, V-12.345.678-1',
|
||||
'xi': 'XI123456782',
|
||||
'sa': _('310175397400003 [Fifteen digits, first and last digits should be "3"]')
|
||||
}
|
||||
|
||||
_region_specific_vat_codes = {
|
||||
'xi',
|
||||
't',
|
||||
}
|
||||
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = 'res.partner'
|
||||
|
||||
vies_failed_message = fields.Char('Technical field display a message to the user if the VIES check fails.', store=False)
|
||||
|
||||
def _split_vat(self, vat):
|
||||
'''
|
||||
Splits the VAT Number to get the country code in a first place and the code itself in a second place.
|
||||
This has to be done because some countries' code are one character long instead of two (i.e. "T" for Japan)
|
||||
'''
|
||||
if len(vat) > 1 and vat[1].isalpha():
|
||||
vat_country, vat_number = vat[:2].lower(), vat[2:].replace(' ', '')
|
||||
else:
|
||||
vat_country, vat_number = vat[:1].lower(), vat[1:].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
|
||||
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.
|
||||
_logger.info('Calling VIES service to check VAT for validation: %s', vat)
|
||||
return check_vies(vat)
|
||||
|
||||
def check_vat_uy(self, vat):
|
||||
""" Taken from python-stdnum's master branch, as the release doesn't handle RUT numbers starting with 22.
|
||||
origin https://github.com/arthurdejong/python-stdnum/blob/master/stdnum/uy/rut.py
|
||||
FIXME Can be removed when python-stdnum does a new release. """
|
||||
|
||||
def compact(number):
|
||||
"""Convert the number to its minimal representation."""
|
||||
number = clean(number, ' -').upper().strip()
|
||||
if number.startswith('UY'):
|
||||
return number[2:]
|
||||
return number
|
||||
|
||||
def calc_check_digit(number):
|
||||
"""Calculate the check digit."""
|
||||
weights = (4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2)
|
||||
total = sum(int(n) * w for w, n in zip(weights, number))
|
||||
return str(-total % 11)
|
||||
|
||||
vat = compact(vat)
|
||||
|
||||
if (
|
||||
not vat.isdigit() or # InvalidFormat
|
||||
len(vat) != 12 or # InvalidLength
|
||||
vat[:2] < '01' or vat[:2] > '22' or # InvalidComponent
|
||||
vat[2:8] == '000000' or
|
||||
vat[8:11] != '001' or
|
||||
vat[-1] != calc_check_digit(vat)): # Invalid Check Digit
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
@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 return True and ignore the result.
|
||||
_logger.exception("Failed VIES VAT check.")
|
||||
return True
|
||||
|
||||
@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):
|
||||
# The context key 'no_vat_validation' allows you to store/set a VAT number without doing validations.
|
||||
# This is for API pushes from external platforms where you have no control over VAT numbers.
|
||||
if self.env.context.get('no_vat_validation'):
|
||||
return
|
||||
|
||||
for partner in self:
|
||||
# Skip checks when only one character is used. Some users like to put '/' or other as VAT to differentiate between
|
||||
# A partner for which they didn't input VAT, and the one not subject to VAT
|
||||
if not partner.vat or len(partner.vat) == 1:
|
||||
continue
|
||||
country = partner.commercial_partner_id.country_id
|
||||
if self._run_vat_test(partner.vat, country, partner.is_company) is False:
|
||||
partner_label = _("partner [%s]", partner.name)
|
||||
msg = partner._build_vat_error_message(country and country.code.lower() or None, partner.vat, partner_label)
|
||||
raise ValidationError(msg)
|
||||
|
||||
@api.onchange('vat', 'country_id')
|
||||
def _onchange_check_vies(self):
|
||||
""" Check the VAT number with VIES, if enabled. Return a non-blocking warning if the check fails."""
|
||||
if self.env.context.get('company_id'):
|
||||
company = self.env['res.company'].browse(self.env.context['company_id'])
|
||||
else:
|
||||
company = self.env.company
|
||||
if not company.vat_check_vies:
|
||||
return
|
||||
|
||||
eu_countries = self.env.ref('base.europe').country_ids
|
||||
for eu_partner_company in self.filtered(lambda partner: partner.country_id in eu_countries and partner.is_company):
|
||||
# Skip checks when only one character is used. Some users like to put '/' or other as VAT to differentiate between
|
||||
# A partner for which they didn't input VAT, and the one not subject to VAT
|
||||
if not eu_partner_company.vat or len(eu_partner_company.vat) == 1:
|
||||
continue
|
||||
country = eu_partner_company.country_id
|
||||
if self._run_vies_test(eu_partner_company.vat, country) is False:
|
||||
self.vies_failed_message = _("The VAT number %s failed the VIES VAT validation check.", eu_partner_company.vat)
|
||||
else:
|
||||
self.vies_failed_message = False
|
||||
|
||||
@api.model
|
||||
def _run_vat_test(self, vat_number, default_country, partner_is_company=True):
|
||||
# OVERRIDE account
|
||||
check_result = None
|
||||
|
||||
# First check with country code as prefix of the TIN
|
||||
vat_country_code, vat_number_split = self._split_vat(vat_number)
|
||||
|
||||
if vat_country_code == 'eu' and default_country not in self.env.ref('base.europe').country_ids:
|
||||
# Foreign companies that trade with non-enterprises in the EU
|
||||
# may have a VATIN starting with "EU" instead of a country code.
|
||||
return True
|
||||
|
||||
vat_has_legit_country_code = self.env['res.country'].search([('code', '=', vat_country_code.upper())], limit=1)
|
||||
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:
|
||||
check_result = self.simple_vat_check(vat_country_code, vat_number_split)
|
||||
if check_result:
|
||||
return vat_country_code
|
||||
|
||||
# If it fails, check with default_country (if it exists)
|
||||
if default_country:
|
||||
check_result = self.simple_vat_check(default_country.code.lower(), vat_number)
|
||||
if check_result:
|
||||
return default_country.code.lower()
|
||||
|
||||
# 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.
|
||||
return check_result
|
||||
|
||||
@api.model
|
||||
def _run_vies_test(self, vat_number, default_country):
|
||||
""" Validate a VAT number using the VIES VAT validation. """
|
||||
check_result = None
|
||||
|
||||
# First check with country code as prefix of the TIN
|
||||
vat_country_code, vat_number_split = self._split_vat(vat_number)
|
||||
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:
|
||||
check_result = self.vies_vat_check(vat_country_code, vat_number_split)
|
||||
if check_result:
|
||||
return vat_country_code
|
||||
|
||||
# If it fails, check with default_country (if it exists)
|
||||
if default_country:
|
||||
check_result = self.vies_vat_check(default_country.code.lower(), vat_number)
|
||||
if check_result:
|
||||
return default_country.code.lower()
|
||||
|
||||
return check_result
|
||||
|
||||
@api.model
|
||||
def _build_vat_error_message(self, country_code, wrong_vat, record_label):
|
||||
if self.env.context.get('company_id'):
|
||||
company = self.env['res.company'].browse(self.env.context['company_id'])
|
||||
else:
|
||||
company = self.env.company
|
||||
|
||||
vat_label = _("VAT")
|
||||
if country_code and company.country_id and country_code == company.country_id.code.lower() and company.country_id.vat_label:
|
||||
vat_label = company.country_id.vat_label
|
||||
|
||||
expected_format = _ref_vat.get(country_code, "'CC##' (CC=Country Code, ##=VAT Number)")
|
||||
|
||||
# Catch use case where the record label is about the public user (name: False)
|
||||
if 'False' not in record_label:
|
||||
return '\n' + _(
|
||||
'The %(vat_label)s number [%(wrong_vat)s] for %(record_label)s does not seem to be valid. \nNote: the expected format is %(expected_format)s',
|
||||
vat_label=vat_label,
|
||||
wrong_vat=wrong_vat,
|
||||
record_label=record_label,
|
||||
expected_format=expected_format,
|
||||
)
|
||||
else:
|
||||
return '\n' + _(
|
||||
'The %(vat_label)s number [%(wrong_vat)s] does not seem to be valid. \nNote: the expected format is %(expected_format)s',
|
||||
vat_label=vat_label,
|
||||
wrong_vat=wrong_vat,
|
||||
expected_format=expected_format,
|
||||
)
|
||||
|
||||
|
||||
__check_vat_al_re = re.compile(r'^[JKLM][0-9]{8}[A-Z]$')
|
||||
|
||||
def check_vat_al(self, vat):
|
||||
"""Check Albania VAT number"""
|
||||
number = stdnum.util.get_cc_module('al', 'vat').compact(vat)
|
||||
|
||||
if len(number) == 10 and self.__check_vat_al_re.match(number):
|
||||
return True
|
||||
return False
|
||||
|
||||
__check_tin_hu_individual_re = re.compile(r'^8\d{9}$')
|
||||
__check_tin_hu_companies_re = re.compile(r'^\d{8}-?[1-5]-?\d{2}$')
|
||||
__check_tin_hu_european_re = re.compile(r'^\d{8}$')
|
||||
|
||||
def check_vat_hu(self, vat):
|
||||
"""
|
||||
Check Hungary VAT number that can be for example 'HU12345676 or 'xxxxxxxx-y-zz' or '8xxxxxxxxy'
|
||||
- For xxxxxxxx-y-zz, 'x' can be any number, 'y' is a number between 1 and 5 depending on the person and the 'zz'
|
||||
is used for region code.
|
||||
- 8xxxxxxxxy, Tin number for individual, it has to start with an 8 and finish with the check digit
|
||||
- In case of EU format it will be the first 8 digits of the full VAT
|
||||
"""
|
||||
companies = self.__check_tin_hu_companies_re.match(vat)
|
||||
if companies:
|
||||
return True
|
||||
individual = self.__check_tin_hu_individual_re.match(vat)
|
||||
if individual:
|
||||
return True
|
||||
european = self.__check_tin_hu_european_re.match(vat)
|
||||
if european:
|
||||
return True
|
||||
# Check the vat number
|
||||
return stdnum.util.get_cc_module('hu', 'vat').is_valid(vat)
|
||||
|
||||
__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 is_valid_ruc_ec(self, vat):
|
||||
if len(vat) in (10, 13) and vat.isdecimal():
|
||||
return True
|
||||
return False
|
||||
|
||||
def check_vat_ec(self, vat):
|
||||
vat = clean(vat, ' -.').upper().strip()
|
||||
return self.is_valid_ruc_ec(vat)
|
||||
|
||||
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]
|
||||
|
||||
# TODO: remove in master
|
||||
def check_vat_ie(self, vat):
|
||||
return stdnum.util.get_cc_module('ie', 'vat').is_valid(vat)
|
||||
|
||||
# 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
|
||||
|
||||
# Philippines TIN (+ branch code) validation
|
||||
__check_vat_ph_re = re.compile(r"\d{3}-\d{3}-\d{3}(-\d{3,5})?$")
|
||||
|
||||
def check_vat_ph(self, vat):
|
||||
return len(vat) >= 11 and len(vat) <= 17 and self.__check_vat_ph_re.match(vat)
|
||||
|
||||
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
|
||||
def check_vat_tr(self, vat):
|
||||
return stdnum.util.get_cc_module('tr', 'tckimlik').is_valid(vat) or stdnum.util.get_cc_module('tr', 'vkn').is_valid(vat)
|
||||
|
||||
__check_vat_sa_re = re.compile(r"^3[0-9]{13}3$")
|
||||
|
||||
# Saudi Arabia TIN validation
|
||||
def check_vat_sa(self, vat):
|
||||
"""
|
||||
Check company VAT TIN according to ZATCA specifications: The VAT number should start and begin with a '3'
|
||||
and be 15 digits long
|
||||
"""
|
||||
return self.__check_vat_sa_re.match(vat) or 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_ve(self, vat):
|
||||
# https://tin-check.com/en/venezuela/
|
||||
# https://techdocs.broadcom.com/us/en/symantec-security-software/information-security/data-loss-prevention/15-7/About-content-packs/What-s-included-in-Content-Pack-2021-02/Updated-data-identifiers-in-Content-Pack-2021-02/venezuela-national-identification-number-v115451096-d327e108002-CP2021-02.html
|
||||
# Sources last visited on 2022-12-09
|
||||
|
||||
# VAT format: (kind - 1 letter)(identifier number - 8-digit number)(check digit - 1 digit)
|
||||
vat_regex = re.compile(r"""
|
||||
([vecjpg]) # group 1 - kind
|
||||
(
|
||||
(?P<optional_1>-)? # optional '-' (1)
|
||||
[0-9]{2}
|
||||
(?(optional_1)(?P<optional_2>[.])?) # optional '.' (2) only if (1)
|
||||
[0-9]{3}
|
||||
(?(optional_2)[.]) # mandatory '.' if (2)
|
||||
[0-9]{3}
|
||||
(?(optional_1)-) # mandatory '-' if (1)
|
||||
) # group 2 - identifier number
|
||||
([0-9]{1}) # group X - check digit
|
||||
""", re.VERBOSE | re.IGNORECASE)
|
||||
|
||||
matches = re.fullmatch(vat_regex, vat)
|
||||
if not matches:
|
||||
return False
|
||||
|
||||
kind, identifier_number, *_, check_digit = matches.groups()
|
||||
kind = kind.lower()
|
||||
identifier_number = identifier_number.replace("-", "").replace(".", "")
|
||||
check_digit = int(check_digit)
|
||||
|
||||
if kind == 'v': # Venezuela citizenship
|
||||
kind_digit = 1
|
||||
elif kind == 'e': # Foreigner
|
||||
kind_digit = 2
|
||||
elif kind == 'c' or kind == 'j': # Township/Communal Council or Legal entity
|
||||
kind_digit = 3
|
||||
elif kind == 'p': # Passport
|
||||
kind_digit = 4
|
||||
else: # Government ('g')
|
||||
kind_digit = 5
|
||||
|
||||
# === Checksum validation ===
|
||||
multipliers = [3, 2, 7, 6, 5, 4, 3, 2]
|
||||
checksum = kind_digit * 4
|
||||
checksum += sum(map(lambda n, m: int(n) * m, identifier_number, multipliers))
|
||||
|
||||
checksum_digit = 11 - checksum % 11
|
||||
if checksum_digit > 9:
|
||||
checksum_digit = 0
|
||||
|
||||
return check_digit == checksum_digit
|
||||
|
||||
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"""
|
||||
check_func = getattr(stdnum.util.get_cc_module('gb', 'vat'), 'is_valid', None)
|
||||
if not check_func:
|
||||
return len(vat) == 9
|
||||
return check_func(vat)
|
||||
|
||||
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 check_vat_nz(self, vat):
|
||||
'''
|
||||
The New Zealand equivalent of a VAT number is an IRD number (GST number is another name for this).
|
||||
IRD/GST numbers must legally must be displayed on all tax invoices.
|
||||
https://arthurdejong.org/python-stdnum/doc/1.13/stdnum.nz.ird#module-stdnum.nz.ird
|
||||
'''
|
||||
check_func = stdnum.util.get_cc_module('nz', 'ird').is_valid
|
||||
return check_func(vat)
|
||||
|
||||
def check_vat_t(self, vat):
|
||||
if self.country_id.code == 'JP':
|
||||
return self.simple_vat_check('jp', vat)
|
||||
|
||||
def check_vat_br(self, vat):
|
||||
'''
|
||||
Example of a Brazilian CNPJ number: 76.634.583/0001-74.
|
||||
The 13th digit is the check digit of the previous 12 digits.
|
||||
The check digit is calculated by multiplying the first 12 digits by weights and calculate modulo 11 of the result.
|
||||
The 14th digit is the check digit of the previous 13 digits. Calculated the same way.
|
||||
Both remainders are appended to the first 12 digits.
|
||||
'''
|
||||
if not vat:
|
||||
return False
|
||||
|
||||
def _calculate_mod_11(check, weights):
|
||||
result = (sum([i * j for (i, j) in zip(check, weights)])) % 11
|
||||
if result <= 1:
|
||||
return 0
|
||||
return 11 - result
|
||||
|
||||
def _is_valid_cnpj(vat_clean):
|
||||
weights = [6, 5, 4, 3, 2, 9, 8, 7, 6, 5, 4, 3, 2]
|
||||
vat_check = vat_clean[:12]
|
||||
vat_check.append(_calculate_mod_11(vat_check, weights[1:]))
|
||||
vat_check.append(_calculate_mod_11(vat_check, weights))
|
||||
return vat_check == vat_clean
|
||||
|
||||
def _is_valid_cpf(vat_clean):
|
||||
total_sum = 0
|
||||
|
||||
# If the CPF list contains all zeros, it's not valid
|
||||
if vat_clean == [0] * 11:
|
||||
return False
|
||||
|
||||
# Calculate the sum for the first verification digit
|
||||
for i in range(1, 10):
|
||||
total_sum = total_sum + vat_clean[i - 1] * (11 - i)
|
||||
remainder = (total_sum * 10) % 11
|
||||
|
||||
# If the remainder is 10 or 11, set it to 0
|
||||
if remainder in (10, 11):
|
||||
remainder = 0
|
||||
|
||||
# Check the first verification digit
|
||||
if remainder != vat_clean[9]:
|
||||
return False
|
||||
total_sum = 0
|
||||
|
||||
# Calculate the sum for the second verification digit
|
||||
for i in range(1, 11):
|
||||
total_sum = total_sum + vat_clean[i - 1] * (12 - i)
|
||||
remainder = (total_sum * 10) % 11
|
||||
|
||||
# If the remainder is 10 or 11, set it to 0
|
||||
if remainder in (10, 11):
|
||||
remainder = 0
|
||||
|
||||
# Check the second verification digit
|
||||
if remainder != vat_clean[10]:
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
vat_clean = [int(digit) for digit in re.sub("[^0-9]", "", vat)]
|
||||
return (
|
||||
len(vat_clean) == 14 and _is_valid_cnpj(vat_clean)
|
||||
or len(vat_clean) == 11 and _is_valid_cpf(vat_clean)
|
||||
)
|
||||
|
||||
__check_vat_cr_re = re.compile(r'^(?:[1-9]\d{8}|\d{10}|[1-9]\d{10,11})$')
|
||||
|
||||
def check_vat_cr(self, vat):
|
||||
# CÉDULA FÍSICA: 9 digits
|
||||
# CÉDULA JURÍDICA: 10 digits
|
||||
# CÉDULA DIMEX: 11 or 12 digits
|
||||
# CÉDULA NITE: 10 digits
|
||||
|
||||
return self.__check_vat_cr_re.match(vat) or False
|
||||
|
||||
def format_vat_eu(self, vat):
|
||||
# Foreign companies that trade with non-enterprises in the EU
|
||||
# may have a VATIN starting with "EU" instead of a country code.
|
||||
return 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 check_vat_id(self, vat):
|
||||
""" Temporary Indonesian VAT validation to support the new format
|
||||
introduced in January 2024."""
|
||||
vat = clean(vat, ' -.').strip()
|
||||
|
||||
if len(vat) not in (15, 16) or not vat[0:15].isdecimal() or not vat[-1].isdecimal():
|
||||
return False
|
||||
|
||||
if len(vat) == 15:
|
||||
# VAT is only digits and of the right length, check the Luhn checksum.
|
||||
try:
|
||||
luhn.validate(vat[0:9])
|
||||
except (InvalidFormat, InvalidChecksum):
|
||||
return False
|
||||
|
||||
return True
|
||||
|
||||
def check_vat_de(self, vat):
|
||||
is_valid_vat = stdnum.util.get_cc_module("de", "vat").is_valid
|
||||
is_valid_stnr = stdnum.util.get_cc_module("de", "stnr").is_valid
|
||||
return is_valid_vat(vat) or is_valid_stnr(vat)
|
||||
|
||||
def check_vat_il(self, vat):
|
||||
check_func = stdnum.util.get_cc_module('il', 'idnr').is_valid
|
||||
return check_func(vat)
|
||||
|
||||
__check_vat_vn_re = re.compile(r'^\d{10}(?:-?\d{3})?$|^\d{12}$')
|
||||
|
||||
def check_vat_vn(self, vat):
|
||||
"""
|
||||
VAT format validator for Vietnam.
|
||||
Supported formats:
|
||||
- 10-digit format (Enterprise tax ID): e.g., 0101243150
|
||||
- 13-digit format with branch suffix: e.g., 0101243150-001
|
||||
- 12-digit format (Personal ID / Citizen ID - CCCD): e.g., 079123456789
|
||||
(used as tax ID for individuals from July 1st, 2025)
|
||||
|
||||
Note:
|
||||
- stdnum.vn.mst.validate() currently only supports 10- and 13-digit VAT numbers
|
||||
- and does not accept the 12-digit personal tax ID (CCCD) format introduced from 01/07/2025.
|
||||
- This helper provides a lightweight format-level validator for use in the meantime.
|
||||
- Can be removed once stdnum.vn.mst adds CCCD support.
|
||||
"""
|
||||
vat = vat.strip()
|
||||
return bool(self.__check_vat_vn_re.match(vat))
|
||||
|
||||
def format_vat_sm(self, vat):
|
||||
stdnum_vat_format = stdnum.util.get_cc_module('sm', 'vat').compact
|
||||
return stdnum_vat_format('SM' + vat)[2:]
|
||||
|
||||
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)
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from . import test_validate_ruc
|
||||
|
|
@ -0,0 +1,158 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.tests.common import TransactionCase, tagged
|
||||
from odoo.tools._monkeypatches import new_get_soap_client
|
||||
from odoo.exceptions import ValidationError
|
||||
from unittest.mock import patch
|
||||
|
||||
import stdnum.eu.vat
|
||||
from lxml import etree
|
||||
from zeep import Client, Transport
|
||||
from zeep.wsdl import Document
|
||||
|
||||
|
||||
class TestStructure(TransactionCase):
|
||||
@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",
|
||||
})
|
||||
|
||||
# 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
|
||||
with self.assertRaises(ValidationError), self.env.cr.savepoint():
|
||||
company.vat = "BE0987654321" # VIES refused, don't fallback on other check
|
||||
company.vat = "BE0477472701"
|
||||
|
||||
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})
|
||||
|
||||
def test_vat_eu(self):
|
||||
""" Foreign companies that trade with non-enterprises in the EU may have a VATIN starting with "EU" instead of
|
||||
a country code.
|
||||
"""
|
||||
test_partner = self.env['res.partner'].create({'name': "Turlututu", 'country_id': self.env.ref('base.fr').id})
|
||||
test_partner.write({'vat': "EU528003646", 'country_id': None})
|
||||
|
||||
test_partner.write({'vat': "EU528003646", 'country_id': self.env.ref('base.ca').id})
|
||||
|
||||
with self.assertRaises(ValidationError):
|
||||
test_partner.write({'vat': 'EU528003646', 'country_id': self.env.ref('base.be').id})
|
||||
|
||||
def test_nif_de(self):
|
||||
test_partner = self.env['res.partner'].create({'name': "Mein Company", 'country_id': self.env.ref('base.de').id})
|
||||
# Set a valid VAT
|
||||
test_partner.write({'vat': "DE123456788"})
|
||||
# Set a valid German tax ID (steuernummer)
|
||||
test_partner.write({'vat': "201/123/12340"})
|
||||
# Test invalid VAT (should raise a ValidationError)
|
||||
with self.assertRaises(ValidationError):
|
||||
test_partner.write({'vat': "136695978"})
|
||||
|
||||
def test_rut_uy(self):
|
||||
test_partner = self.env["res.partner"].create({"name": "UY Company", "country_id": self.env.ref("base.uy").id})
|
||||
# Set a valid Number
|
||||
test_partner.vat = "215521750017"
|
||||
test_partner.vat = "220018800014"
|
||||
test_partner.vat = "21-55217500-17"
|
||||
test_partner.vat = "21 55217500 17"
|
||||
test_partner.vat = "UY215521750017"
|
||||
|
||||
# Test invalid VAT (should raise a ValidationError)
|
||||
msg = "The VAT number.*does not seem to be valid"
|
||||
with self.assertRaisesRegex(ValidationError, msg):
|
||||
test_partner.vat = "215521750018"
|
||||
with self.assertRaisesRegex(ValidationError, msg):
|
||||
test_partner.vat = "21.55217500.17"
|
||||
with self.assertRaisesRegex(ValidationError, msg):
|
||||
test_partner.vat = "2155 ABC 21750017"
|
||||
|
||||
def test_soap_client_for_vies_loads(self):
|
||||
# Test of stdnum get_soap_client monkeypatch. This test is mostly to
|
||||
# see that no unexpected import errors are thrown and not caught.
|
||||
with patch.object(Document, '_get_xml_document', return_value=etree.Element("root")), \
|
||||
patch.object(Client, 'service', return_value=None):
|
||||
doc = Document(location=None, transport=Transport())
|
||||
new_get_soap_client(doc, 30)
|
||||
|
||||
def test_vat_vn(self):
|
||||
test_partner = self.env['res.partner'].create({'name': "DuongDepTrai", 'country_id': self.env.ref('base.vn').id})
|
||||
# Valid vn vat
|
||||
test_partner.vat = "000012345679" # individual
|
||||
test_partner.vat = "0123457890" # enterprise
|
||||
test_partner.vat = "0123457890-111" # branch
|
||||
|
||||
# Test invalid VAT (should raise a ValidationError)
|
||||
msg = "The VAT number.*does not seem to be valid"
|
||||
with self.assertRaisesRegex(ValidationError, msg):
|
||||
test_partner.write({'vat': '00001234567912'})
|
||||
with self.assertRaisesRegex(ValidationError, msg):
|
||||
test_partner.write({'vat': '10123457890'})
|
||||
with self.assertRaisesRegex(ValidationError, msg):
|
||||
test_partner.write({'vat': '0123457890-11134'})
|
||||
|
||||
|
||||
@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
|
||||
|
|
@ -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>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="view_partner_base_vat_form" model="ir.ui.view">
|
||||
<field name="model">res.partner</field>
|
||||
<field name="name">view.partner.base.vat.form</field>
|
||||
<field name="inherit_id" ref="base.view_partner_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[hasclass('alert')]" position="after">
|
||||
<div class="alert alert-warning oe_edit_only" role="alert" attrs="{'invisible': [('vies_failed_message', '=', False)]}">
|
||||
<field name="vies_failed_message" nolabel="1" readonly="1"/>
|
||||
</div>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
32
odoo-bringout-oca-ocb-base_vat/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-base_vat/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Base_vat Module - base_vat
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-base_vat/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-base_vat/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for base_vat. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-base_vat/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-base_vat/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-base_vat/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-base_vat/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [account](../../odoo-bringout-oca-ocb-account)
|
||||
4
odoo-bringout-oca-ocb-base_vat/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-base_vat/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon base_vat or install in UI.
|
||||
7
odoo-bringout-oca-ocb-base_vat/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-base_vat/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-base_vat"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-base_vat"
|
||||
```
|
||||
15
odoo-bringout-oca-ocb-base_vat/doc/MODELS.md
Normal file
15
odoo-bringout-oca-ocb-base_vat/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in base_vat.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class account_fiscal_position
|
||||
class res_company
|
||||
class res_config_settings
|
||||
class res_partner
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-base_vat/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-base_vat/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: base_vat. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon base_vat
|
||||
- License: LGPL-3
|
||||
3
odoo-bringout-oca-ocb-base_vat/doc/REPORTS.md
Normal file
3
odoo-bringout-oca-ocb-base_vat/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Reports
|
||||
|
||||
This module does not define custom reports.
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue