Начальное наполнение
This commit is contained in:
parent
cb9896c5c4
commit
34b75b9080
4
__init__.py
Normal file
4
__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
|
28
__manifest__.py
Normal file
28
__manifest__.py
Normal file
@ -0,0 +1,28 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
{
|
||||
'name': 'IBAN Bank Accounts',
|
||||
'category': 'Hidden/Tools',
|
||||
'description': """
|
||||
This module installs the base for IBAN (International Bank Account Number) bank accounts and checks for it's validity.
|
||||
======================================================================================================================
|
||||
|
||||
The ability to extract the correctly represented local accounts from IBAN accounts
|
||||
with a single statement.
|
||||
""",
|
||||
'depends': ['account', 'web'],
|
||||
'data': [
|
||||
'views/partner_view.xml',
|
||||
'views/setup_wizards_view.xml'
|
||||
],
|
||||
'demo': ['data/res_partner_bank_demo.xml'],
|
||||
'assets': {
|
||||
'web.assets_backend': [
|
||||
'base_iban/static/src/components/**/*',
|
||||
],
|
||||
'web.qunit_suite_tests': [
|
||||
'base_iban/static/src/tests/**/*',
|
||||
],
|
||||
},
|
||||
'license': 'LGPL-3',
|
||||
}
|
27
data/res_partner_bank_demo.xml
Normal file
27
data/res_partner_bank_demo.xml
Normal file
@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="1">
|
||||
|
||||
<record id="bank_iban_asustek" model="res.partner.bank">
|
||||
<field name="acc_type">iban</field>
|
||||
<field name="acc_number">BE39103123456719</field>
|
||||
<field name="bank_id" ref="base.bank_bnp" />
|
||||
<field name="partner_id" ref="base.res_partner_1"/>
|
||||
</record>
|
||||
|
||||
<record id="bank_iban_china_export" model="res.partner.bank">
|
||||
<field name="acc_type">iban</field>
|
||||
<field name="acc_number">SI56191000000123438</field>
|
||||
<field name="bank_id" ref="base.bank_bnp" />
|
||||
<field name="partner_id" ref="base.res_partner_3"/>
|
||||
</record>
|
||||
|
||||
<record id="bank_iban_main_partner" model="res.partner.bank">
|
||||
<field name="acc_type">iban</field>
|
||||
<field name="acc_number">BE61310126985517</field>
|
||||
<field name="bank_id" ref="base.bank_ing" />
|
||||
<field name="partner_id" ref="base.res_partner_4"/>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
73
i18n/af.po
Normal file
73
i18n/af.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/am.po
Normal file
73
i18n/am.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Amharic (https://app.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
78
i18n/ar.po
Normal file
78
i18n/ar.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "الحساب ليس IBAN صالحاً "
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "الحسابات البنكية"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "لا يمكن احتساب الـBBAN لأن الحساب لا يملك رقم IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"يبدو أن رقم IBAN غير صحيح. كان عليك أن تدخل رقماً بهذه الصيغة %s\n"
|
||||
"حيث B = رمز البنك الوطني، S = رمز الفرع، C = رقم الحساب، k = رقم التحقق "
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "رقم IBAN غير صحيح، يجب أن يبدأ برمز الدولة "
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "لا يوجد كود IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "لم يتخطّ رقم IBAN هذا اختبار التصديق، يرجى التحقق منه. "
|
77
i18n/az.po
Normal file
77
i18n/az.po
Normal file
@ -0,0 +1,77 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Jumshud Sultanov <cumshud@gmail.com>, 2022\n"
|
||||
"Language-Team: Azerbaijani (https://app.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bank Hesabları"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
72
i18n/base_iban.pot
Normal file
72
i18n/base_iban.pot
Normal file
@ -0,0 +1,72 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:55+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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/bg.po
Normal file
80
i18n/bg.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банкови Сметки"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Не можете да изчислите BBAN, защото номерът на сметката не е IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Изглежда, че IBAN-ът не е верен. Трябва да въведете нещо от сорта на %s "
|
||||
"Където B = Национален банков код, S = Код на клон, C = Номер на сметка, k = "
|
||||
"чекова цифра"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN-ът е невалиден, той трябва да започва с кода на държавата."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Този IBAN не издържа проверката за валидиране, моля проверете го."
|
76
i18n/bs.po
Normal file
76
i18n/bs.po
Normal file
@ -0,0 +1,76 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Računi banke"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN nije valida, trebao bi da počinje sa šifrom države"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
82
i18n/ca.po
Normal file
82
i18n/ca.po
Normal file
@ -0,0 +1,82 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Arnau Ros, 2023
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "El compte no és un IBAN vàlid"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Comptes bancaris"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "No es pot calcular el BBAN per que el número de compte no és un IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"El codi IBAN no sembla correcte. Introduiu una estructura similar a aquesta %s\n"
|
||||
"On B = codi bancari, S = codi d'oficina, C = número de compte, k = dígit de control"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "El codi IBAN és invàlid, ha de començar pel codi del país"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "No hi ha codi IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Aquest IBAN no passa la validació, si us plau verifiqueu-lo."
|
79
i18n/cs.po
Normal file
79
i18n/cs.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tomáš Píšek, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Účet není platný IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankovní účty"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "BBAN nelze vypočítat, protože číslo účtu není IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Zdá se, že IBAN není správný. Měli jste zadat něco podobného %s\n"
|
||||
"Kde B = národní kód banky, S = kód pobočky, C = číslo účtu, k = kontrolní číslice"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Číslo IBAN je neplatné, mělo by začínat kódem země"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Neexistuje žádný kód IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Tento IBAN neprojde ověřovací kontrolou, ověřte jej prosím."
|
78
i18n/da.po
Normal file
78
i18n/da.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonti"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Kan ikke udregne BBAN fordi kontonummeret ikke er et IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN ser ikke ud til at være korrekt. Du bør indtaste noget i denne stil %s\n"
|
||||
"Hvor B = National bankkode, S = Afdelingskode, C = Kontonummer, k = Beregnet tal"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN er ikke gyldigt. Det skal starte med landekoden."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Der er ikke nogen IBAN kode."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN nummeret kunne ikke valideres. Kontrollér det venligst. "
|
79
i18n/de.po
Normal file
79
i18n/de.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Konto ist keine gültige IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonten"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Konnte keine BBAN errechnen, da die Kontonummer keine IBAN ist."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Die IBAN scheint nicht korrekt zu sein. Sie müssen in etwa folgendes eingeben %s\n"
|
||||
"Wobei B = Landesspezifischer Bankschlüssel, S = Zweigschlüssel, C = Kontonummer, k = Prüfziffer"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Die IBAN ist ungültig. Sie muss mit dem Ländercode beginnen"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Es gitb keinen IBAN-Code."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"Diese IBAN hat die Gültigkeitsprüfung nicht bestanden, bitte prüfen Sie sie."
|
79
i18n/el.po
Normal file
79
i18n/el.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Τραπεζικοί Λογαριασμοί"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Αδύνατος ο υπολογισμός του BBAN επειδή ο αριθμός λογαριασμού δεν είναι ΙΒΑΝ."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Ο IBAN δεν φαίνεται να είναι σωστός. Θα έπρεπε να καταχωρήσετε κάτι σαν αυτό %s\n"
|
||||
"Όπου B = Εθνικός κωδικός τράπεζας, S = Κωδικός τράπεζας, C = Αριθμός λοαγαριασμού, k = Check digit"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Ο ΙΒΑΝ είναι μη έγκυρος, θα έπρεπε να ξεκινά με τον κωδικό της χώρας"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Αυτός ο ΙΒΑΝ δεν περνά τον έλεγχο εγκυρότητας, παρακαλώ επαληθεύστε τον."
|
73
i18n/en_GB.po
Normal file
73
i18n/en_GB.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/es.po
Normal file
80
i18n/es.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2024\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "La cuenta no es un IBAN válido"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Cuentas bancarias"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
"No se puede calcular el BBAN porque el número de cuenta no es un IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"El IBAN no parece correcto. Debería introducir algo como esto %s\n"
|
||||
"Donde B = Código nacional del banco, S = código de sucursal, C = Número de cuenta, k = Dígito de control"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "El IBAN no es válido, debería empezar por el código del país"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "No hay código IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Este IBAN no pasó la prueba de validación, por favor verifíquelo."
|
78
i18n/es_419.po
Normal file
78
i18n/es_419.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "La cuenta no es un IBAN válido"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Cuentas bancarias"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "El número de cuenta debe ser un IBAN para poder obtener el BBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"El IBAN no es correcto. Introduzca una estructura similar a esta %s\n"
|
||||
"Donde B sea el código nacional del banco, S el código de sucursal, C el número de cuenta y K el dígito de verificación"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "El código IBAN no es válido, debe empezar por el código del país"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "No hay código IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Este IBAN no pasó la prueba de validación, verifíquelo."
|
73
i18n/es_BO.po
Normal file
73
i18n/es_BO.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_CL.po
Normal file
73
i18n/es_CL.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_CO.po
Normal file
73
i18n/es_CO.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"Language: es_CO\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_CR.po
Normal file
73
i18n/es_CR.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_DO.po
Normal file
73
i18n/es_DO.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"Language: es_DO\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_EC.po
Normal file
73
i18n/es_EC.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_PE.po
Normal file
73
i18n/es_PE.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"Language: es_PE\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_PY.po
Normal file
73
i18n/es_PY.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"Language: es_PY\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/es_VE.po
Normal file
73
i18n/es_VE.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
82
i18n/et.po
Normal file
82
i18n/et.po
Normal file
@ -0,0 +1,82 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Anna, 2023
|
||||
# Aveli Kannel <aveli@avalah.ee>, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Eneli Õigus <enelioigus@gmail.com>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Konto ei ole kehtiv IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Pangakontod"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Ei saa moodustada BBAN numbrit, kuna kontonumber ei ole IBAN number."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN kood ei tundu olevat korrektne. Te peaksite sisestama midagi sellist %s,\n"
|
||||
"kus B = riigi pangakood S = filiaali kood, C = pangakontonumber, k = kontrollnumber"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN number on vale. See peaks algama riigi koodiga"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "IBAN kood puudub."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"See IBAN number ei pääse läbi valideerimiskontrollist. Palun kinnitage "
|
||||
"esmalt see."
|
73
i18n/eu.po
Normal file
73
i18n/eu.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
79
i18n/fa.po
Normal file
79
i18n/fa.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# fardin mardani, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: fardin mardani, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "حساب یک IBAN معتبر نیست"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "حسابهای بانکی"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "نمی توان BBAN را محاسبه کرد زیرا شماره حساب IBAN نیست."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"به نظر نمی رسد IBAN صحیح باشد. شما باید چیزی شبیه به این را وارد می کردید%s\n"
|
||||
"جایی که B = کد بانک ملی، S = کد شعبه، C = شماره حساب، k = رقم چک"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN نامعتبر است، باید با کد کشور شروع شود"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "هیچ کد IBAN وجود ندارد."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "این IBAN از بررسی اعتبار سنجی عبور نمی کند، لطفاً آن را تأیید کنید."
|
82
i18n/fi.po
Normal file
82
i18n/fi.po
Normal file
@ -0,0 +1,82 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Konsta Aavaranta, 2023
|
||||
# Tommi Rintala <tommi.rintala@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Tilinumero ei ole validi IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Pankkitilit"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "BBAN numeroa ei voi laskea, koska tilinumero ei ole IBAN muodossa."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN numero ei ole oikein. Syötetyn tiedon tulisi olla jotain tämäntapaista %s\n"
|
||||
"jossa B = kansallinen pankkitunnus, S = osasto koodi, C = tilinumero ja k = tarkistusnumero"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN koodi on väärin, sen tulisi alkaa maakoodilla"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "IBAN-koodia ei ole."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN ei läpäissyt tarkistusta, ole hyvä ja tarkista se"
|
73
i18n/fo.po
Normal file
73
i18n/fo.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/fr.po
Normal file
80
i18n/fr.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Le compte n'est pas un IBAN valide"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Comptes bancaires"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
"Impossible de calculer le BBAN car le numéro de compte n'est pas un IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"L'IBAN semble incorrect. La saisie doit être de la forme : %s\n"
|
||||
"Où B = Code national de la banque, S = Code de la branche, C = Numéro de compte, k = Chiffres de vérification"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "L'IBAN est invalide, il doit commencer par le code du pays"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Il n'y a pas de code IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"Cet IBAN ne passe pas la vérification de validité, veuillez le vérifier."
|
75
i18n/fr_BE.po
Normal file
75
i18n/fr_BE.po
Normal file
@ -0,0 +1,75 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2015-10-21 09:52+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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Comptes bancaires"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/fr_CA.po
Normal file
73
i18n/fr_CA.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/gl.po
Normal file
73
i18n/gl.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
77
i18n/gu.po
Normal file
77
i18n/gu.po
Normal file
@ -0,0 +1,77 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+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"
|
||||
"Language: gu\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bank Accounts"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/he.po
Normal file
80
i18n/he.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# דודי מלכה <Dudimalka6@gmail.com>, 2023
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Yihya Hugirat <hugirat@gmail.com>, 2023\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=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "חשבונות בנק"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "לא ניתן לחשב את ה- BBAN משום שמספר החשבון אינו IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"ה- IBAN לא נראה נכון. היית צריך להכניס משהו כזה %s\n"
|
||||
"איפה B = קוד בנק לאומי, S = קוד סניף, C = מספר חשבון, k = בדוק ספרות"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "ה- IBAN אינו חוקי, הוא אמור להתחיל בקוד הארץ"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "אין קוד IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "ה- IBAN הזה אינו עובר את בדיקת האימות, נא אמת אותו."
|
80
i18n/hr.po
Normal file
80
i18n/hr.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2022\n"
|
||||
"Language-Team: Croatian (https://app.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr "Račun nije u IBAN standardu."
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Broj računa nije valjani IBAN "
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankovni računi"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Nije moguće izračunati VBDI jer broj računa nije u IBAN formatu."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Čini se da IBAN nije ispravan. Trebali bi upisati nešto poput %s\n"
|
||||
"Gdje je B= Nacionalni kod banke, S=VBDI Banke, C= broj računa, k=kontrolni broj"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN nije ispravan, trebao bi počinjati sa oznakom države"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nema IBAN šifre."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Ovaj IBAN ne prolazi validaciju, molim provjerite!"
|
80
i18n/hu.po
Normal file
80
i18n/hu.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: gezza <geza.nagy@oregional.hu>, 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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "A számlaszám nem valós IBAN szám"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankszámlák"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "BBAN nem számolható, mivel a számlaszám nem IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Az IBAN nem tűnik megfelelőnek. Ehhez hasonlónak kellene lennie: %s\n"
|
||||
"Ahol B = Nemzetköz bank kód, S = Fiók kód, C = Számlaszám, k = Ellenőrző számjegy"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Az IBAN érvénytelen, az ország kóddal kell kezdődnie"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nem IBAN kód."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Ez az IBAN nem ment át az ellenőrzésen, kérem ellenőrizze."
|
75
i18n/hy.po
Normal file
75
i18n/hy.po
Normal file
@ -0,0 +1,75 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:35+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Armenian (http://www.transifex.com/odoo/odoo-9/language/hy/)\n"
|
||||
"Language: hy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Բանկային հաշիվներ"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/id.po
Normal file
80
i18n/id.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Akun bukan merupakan IBAN valid"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Rekening Bank"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Tidak dapat menghitung BBAN dikarenakan nomor akun bukan sebuah IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN sepertinya tidak benar. Anda seharusnya memasukkan sesuatu seperti ini %s\n"
|
||||
"Di mana B = Kode Bank Nasional, S = Kode Cabang, C = Nomor Akun, k = Nomor Cek Giro"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN tidak valid, harus dimulai dengan kode negara"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Tidak ada kode IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"IBAN ini tidak lolos pemeriksaan validitas, silahkan verifikasi nomor "
|
||||
"tersebut."
|
73
i18n/is.po
Normal file
73
i18n/is.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankareikningar"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
79
i18n/it.po
Normal file
79
i18n/it.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Il conto presenta un IBAN non valido"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Conti bancari"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
"Impossibile calcolare il BBAN perché il numero di conto non è un IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"L'IBAN non sembra essere corretto. È necessario inserire un codice di questo tipo %s\n"
|
||||
"Dove B = Codice banca, S = Codice filiale, C = Numero conto, k = Codice di controllo"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Il codice IBAN non è valido: dovrebbe iniziare con il codice nazione"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nessun codice IBAN presente."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Questo IBAN non ha superato il controllo di validità, verificarlo."
|
78
i18n/ja.po
Normal file
78
i18n/ja.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "口座は有効なIBANではありません。"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "銀行口座"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "口座番号はIBANはないので BBAN を計算することができません。"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"このIBANは正しくないようです。次のように何かを入れるべきです:%s\n"
|
||||
"B =国内銀行コード、S =支店コード、C =口座番号、k =チェックデジット"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "このIBANは無効です。それは国コードから始まる必要があります。"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "IBANコードがありません。"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "このIBANは、検証チェックに合格しませんでした。確認してください。"
|
73
i18n/ka.po
Normal file
73
i18n/ka.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/kab.po
Normal file
73
i18n/kab.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"Language: kab\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
76
i18n/km.po
Normal file
76
i18n/km.po
Normal file
@ -0,0 +1,76 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "គណនីធនាគារ"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
78
i18n/ko.po
Normal file
78
i18n/ko.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "계정이 잘못된 IBAN입니다."
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "은행 계좌"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "계정 번호가 IBAN이 아니므로 BBAN을 계산할 수 없습니다."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN (국제 은행 계좌 번호)"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"국제 은행 계좌 번호가 올바르지 않은 경우 다음과 같이 입력해야 합니다 : %s\n"
|
||||
"B = 국가 은행 코드, S = 지점 코드, C = 계좌 번호, k = 수표 번호"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN이 유효하지 않습니다. 국가 코드로 시작해야 합니다."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "IBAN 코드가 없습니다."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "이 IBAN이 유효성 검사를 통과하지 못했습니다. 확인하시기 바랍니다."
|
73
i18n/lb.po
Normal file
73
i18n/lb.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:09+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/lo.po
Normal file
73
i18n/lo.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/lt.po
Normal file
80
i18n/lt.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Banko sąskaitos"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Negalima apskaičiuoti BBAN, nes sąskaitos numeris nėra IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN atrodo neteisingas. Turėtumėte jį įvesti pagal tokią struktūrą %s,\n"
|
||||
"kur B = nacionalinio banko kodas, S = filialo kodas, C = sąskaitos nr., k = kontrolinis skaitmuo"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN numeris netinkamas, jis turi prasidėti šalies kodu"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nėra IBAN kodo."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Šis IBAN nepraėjo patvirtinimo patikrinimo, prašome patikrinti jį."
|
76
i18n/lv.po
Normal file
76
i18n/lv.po
Normal file
@ -0,0 +1,76 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Konstantins Zabogonskis <inculin4ik@gmail.com>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankas konti"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/mk.po
Normal file
73
i18n/mk.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/mn.po
Normal file
80
i18n/mn.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# nurbakhit nurka <nurbakhit@bumanit.mn>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банкны дансууд"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Дансны дугаар IBAN биш тул BBAN - г тооцоолох боломжгүй."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "ОБДД /Олон Банкны Дансны Дугаар/"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN буруу юм шиг байна. Та иймэрхүү юм оруулсан байх: %s\n"
|
||||
"Үүнээс B = Үндэсний банкны код, S = Салбарын код, C = Дансны дугаар, k = Шалгах дугаар"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN буруу байна, улсын кодоор эхлэх ёстой"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "ОБДД код олдсонгүй"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN баталгаажуулалтын шалгалтыг давахгүй байна, баталгаажуулна уу."
|
80
i18n/nb.po
Normal file
80
i18n/nb.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thor Arne Hvidsten, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Thor Arne Hvidsten, 2022\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr "Kontoen er ikke IBAN kompatibel."
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Kontoen er ikke gyldig IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonti"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Kan ikke beregne BBAN fordi kontonummeret ikke er en IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN ser ikke ut til å være korrekt. Du skulle ha lagt inn noe som likner på dette: %s\n"
|
||||
"Der B = nasjonal bankkode, S = avdelingskode C = kontonummer og k = sjekktall"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN er ugyldig, den skal begynne med landkode"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Det finnes ingen IBAN kode."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN kan ikke valideres, vennligst sjekk at den er korrekt."
|
73
i18n/ne.po
Normal file
73
i18n/ne.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
79
i18n/nl.po
Normal file
79
i18n/nl.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Rekening is geen geldig IBAN-nummer."
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankrekeningen"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
"BBAN kan niet berekend worden omdat het rekeningnummer geen IBAN-nummer is."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Het IBAN-nummer lijkt onjuist te zijn. Het nummer zou er ongeveer als volgt moeten uitzien %s\n"
|
||||
"waarbij B = nationale bankcode, S = branchcode, C = rekeningnummer, k = controlecijfer"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "De IBAN is ongeldig. Het zou moeten beginnen met de landcode"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Er is geen IBAN code."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Dit IBAN-nummer kon niet bevestigd worden, controleer deze."
|
78
i18n/pl.po
Normal file
78
i18n/pl.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Rachunek nie jest prawidłowym numerem IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Konta bankowe"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Nie można obliczyć BBAN, bo numer konta nie jest IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN nie wydaje się być poprawny. Trzeba wpisać coś takiego %s\n"
|
||||
"Gdzie B = kod banku, S = kod oddziału, C = numer konta, k = suma kontrolna"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Numer IBAN jest niepoprawny. Powienien zaczynać się od kodu kraju"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nie ma kodu IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Ten numer IBAN nie przeszedł weryfikacji. Sprawdź go."
|
79
i18n/pt.po
Normal file
79
i18n/pt.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Contas Bancárias"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Não foi possível calcular o BBAN porque o nº de conta não é um IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"O IBAN não parece estar correto. Deveria ter inserido qualquer coisa como isto %s\n"
|
||||
"Onde B = código internacional de identificação do Banco, S = Código da Agência, C = Nr. da Conta, K = Dígitos de Verificação"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "O IBAN é inválido. Devia começar pelo código do país"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"Este IBAN não passa na verificação de validade. Por favor, verifique-o."
|
80
i18n/pt_BR.po
Normal file
80
i18n/pt_BR.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "A conta não é um IBAN válido"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Contas bancárias"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
"Não é possível computar o BBAN porque o número de conta não é um IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"O IBAN não parece estar correto. É necessário inserir algo parecido com isto %s\n"
|
||||
"Onde B = código nacional do banco, S = código da agência, C = número da conta, K = dígito verificador"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Este IBAN é inválido. Ele deve começar com o código de país"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Não há código IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"Este IBAN não passou na verificação de validação, é necessário revisá-lo."
|
79
i18n/ro.po
Normal file
79
i18n/ro.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0beta\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:45+0000\n"
|
||||
"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2022\n"
|
||||
"Language-Team: Romanian (https://app.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr "Contul nu corespunde IBAN-ului"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Conturi Bancare"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Nu se poate calcula BBAN pentru că numărul de cont nu este IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr "IBAN-ul nu pare să fi corect. Trebuie să introduceți ceva de genul %s Unde B = Codul de banca, S = Cod domeniu, C= Număr cont, k = sumă control"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "Codul IBAN este nevalid, ar trebui să înceapă cu codul țării"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nu există cod IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Acest cod IBAN nu a trecut de validare, vă rugăm să îl verificați"
|
80
i18n/ru.po
Normal file
80
i18n/ru.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Vasiliy Korobatov <korobatov@gmail.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Счет не является действительным IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банковские Счета"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Невозможно вычислить BBAN, поскольку номер счета не является IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Похоже, что IBAN введен неправильно. Вы должны были ввести что-то вроде этого %s\n"
|
||||
"Где B = код национального банка, S = код отделения, C = номер счета, k = контрольная цифра"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN недействителен, он должен начинаться с кода страны"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Код IBAN отсутствует."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"Этот IBAN не прошел проверку на валидность, пожалуйста, проверьте его."
|
79
i18n/sk.po
Normal file
79
i18n/sk.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tomáš Píšek, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tomáš Píšek, 2024\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Účet nie je platný IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankové účty"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Nemožno vyrátať BBAN pretože číslo účtu nie je IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN sa zdá byť nesprávny. Mali ste zadať niečo takéto %s,\n"
|
||||
"kde B = Kód národnej banky, S = Kód várky, C = Číslo účtu, k = Kontrolná číslica"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN je nesprávny, mal by začínať kódom krajiny"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "IBAN neexistuje."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Tento IBAN neprešiel schválením, prosím overte ho."
|
77
i18n/sl.po
Normal file
77
i18n/sl.po
Normal file
@ -0,0 +1,77 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dejan Sraka <dejan.sraka@picolabs.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Dejan Sraka <dejan.sraka@picolabs.si>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bančni računi"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Ne morem izračunati BBAN ker številka računa ni IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN ni pravilen, pričeti se mora z oznako države"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
73
i18n/sq.po
Normal file
73
i18n/sq.po
Normal file
@ -0,0 +1,73 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
80
i18n/sr.po
Normal file
80
i18n/sr.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Milan Bojovic <mbojovic@outlook.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Nalog nije validan IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankovni računi"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Ne mogu izračunati BBAN jer broj računa nije IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN se ne čini ispravnim. Trebali ste uneti nešto poput ovoga %s\n"
|
||||
"Gde je B = Nacionalni bankovni kod, S = Šifra filijale, C = Broj računa, k = Kontrolna cifra"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN je nevažeći, trebalo bi da počne sa šifrom zemlje."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Nema IBAN koda."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Ovaj IBAN ne prolazi validaciju, molim vas da ga proverite."
|
77
i18n/sr@latin.po
Normal file
77
i18n/sr@latin.po
Normal file
@ -0,0 +1,77 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017
|
||||
# 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: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankovni računi"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN je neispravan, trebalo bi da počinje sa kodom države"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
83
i18n/sv.po
Normal file
83
i18n/sv.po
Normal file
@ -0,0 +1,83 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2023
|
||||
# Simon Nilsson, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Martin Wilderoth <martin.wilderoth@linserv.se>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Wilderoth <martin.wilderoth@linserv.se>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Kontot är inte ett giltigt IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonton"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Kan inte beräkna BBAN eftersom kontonummer inte är en IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN verkar inte vara korrekt. Du borde ha skrivit in någonting som detta 1%s\n"
|
||||
"Där B = Nationell bankkod, S = Bransch-kod, C = Kontonummer, k = Kontrollsiffra"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN är felaktig, den måste inledas med landskod"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Det finns ingen IBAN-kod."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
||||
"Denna IBAN kan inte godkännas. Vänligen kontrollera den och försök igen."
|
75
i18n/te.po
Normal file
75
i18n/te.po
Normal file
@ -0,0 +1,75 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-09-27 15:12+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:35+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Telugu (http://www.transifex.com/odoo/odoo-9/language/te/)\n"
|
||||
"Language: te\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_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/js/legacy_iban_widget.js:0
|
||||
#, python-format
|
||||
msgid "Account isn't IBAN compliant."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#. openerp-web
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "బ్యాంకు ఖాతాలు"
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr ""
|
||||
|
||||
#. module: base_iban
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr ""
|
79
i18n/th.po
Normal file
79
i18n/th.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "บัญชีไม่ใช่ IBAN ที่ถูกต้อง"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "บัญชีธนาคาร"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "ไม่สามารถคำนวณ BBAN ได้ เนื่องจากหมายเลขบัญชีไม่ใช่ IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"ดูเหมือนว่า IBAN จะไม่ถูกต้อง คุณควรจะป้อนข้อมูลลักษณะนี้ %s\n"
|
||||
"โดยที่ B = รหัสธนาคารของประเทศ, S = รหัสสาขา, C = หมายเลขบัญชี, k = หมายเลขเช็ค"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN ไม่ถูกต้อง ควรขึ้นต้นด้วยรหัสประเทศ"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "ไม่มีรหัส IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN นี้ไม่ผ่านการตรวจสอบความถูกต้อง โปรดยืนยัน"
|
83
i18n/tr.po
Normal file
83
i18n/tr.po
Normal file
@ -0,0 +1,83 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Tugay Hatıl <tugayh@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Hesap geçerli bir IBAN değil"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Banka Hesapları"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "BBAN hesaplanamıyor, çünkü hesap numarası bir IBAN değildir."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN doğru görünmüyor. %s gibi bir şey girmiş olmalısınız. \n"
|
||||
"B = Ulusal banka kodu, S = Şube kodu, C = Hesap No, k = Kontrol hanesi"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN geçersizdir, ülke kodu ile başlamalıdır"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "IBAN kodu yok."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Bu IBAN onay kontrolünü geçemez, lütfen doğrulayın."
|
78
i18n/uk.po
Normal file
78
i18n/uk.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Рахунок не є дійсним IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банківські рахунки"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Неможливо обчислити BBAN, бо номер рахунку не є IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"IBAN не видається правильним. Ви повинні ввести щось на зразок цього %s\n"
|
||||
"Де B = Код національного банку, S = Код філії, C = Немає рахунку, k = Чекова цифра"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN неправильний, він повинен починатися з коду країни"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Немає коду IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "Цей IBAN не пройде перевірку валідації, будь ласка, підтвердіть це."
|
78
i18n/vi.po
Normal file
78
i18n/vi.po
Normal file
@ -0,0 +1,78 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "Tài khoản không phải là một IBAN hợp lệ"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Tài khoản ngân hàng"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "Không thể tính toán BBAN vì số tài khoản không phải là một IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"Mã IBAN có vẻ chưa chính xác. Bạn nên nhập thông tin theo định dạng này %s\n"
|
||||
"Trong đó B = Mã ngân hàng, S = Mã chi nhánh, C = Số tài khoản, k = Số séc"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN không hợp lệ, nó phải bắt đầu bằng mã quốc gia"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "Đây không phải mã IBAN."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN này không vượt qua quá trình xác thực, vui lòng xác minh lại."
|
79
i18n/zh_CN.po
Normal file
79
i18n/zh_CN.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "账户不是有效的IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "银行账户"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "不能计算基本银行账号号码因为该账号不是国际银行账号号码。"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"国际银行账号号码看上去不对,您应该输入类似以下%s\n"
|
||||
"B=国家银行代码,S=分行代码,C=账户号,K=检验位"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN代码不正确,应该以国家代码开头"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "这是 IBAN 代码."
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "国际银行账号号码没有通过校验,请改正。"
|
79
i18n/zh_TW.po
Normal file
79
i18n/zh_TW.po
Normal file
@ -0,0 +1,79 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * base_iban
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2023\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_iban
|
||||
#. odoo-javascript
|
||||
#: code:addons/base_iban/static/src/components/iban_widget/iban_widget.xml:0
|
||||
#, python-format
|
||||
msgid "Account isn't a valid IBAN"
|
||||
msgstr "賬戶不是有效的IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#: model:ir.model,name:base_iban.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "銀行帳戶"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "Cannot compute the BBAN because the account number is not an IBAN."
|
||||
msgstr "不能執行該銀行帳號號碼因為該帳號並非是IBAN國際銀行帳號號碼。"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "IBAN"
|
||||
msgstr "IBAN"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit"
|
||||
msgstr ""
|
||||
"國際銀行帳號號碼格式不符,請參考輸入以下格式%s\n"
|
||||
"B=國家銀行代碼,S=分行代碼,C=帳戶號,K=檢驗位"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "The IBAN is invalid, it should begin with the country code"
|
||||
msgstr "IBAN代碼不正確,應該以國家代碼開頭"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "There is no IBAN code."
|
||||
msgstr "沒有IBAN代碼。"
|
||||
|
||||
#. module: base_iban
|
||||
#. odoo-python
|
||||
#: code:addons/base_iban/models/res_partner_bank.py:0
|
||||
#, python-format
|
||||
msgid "This IBAN does not pass the validation check, please verify it."
|
||||
msgstr "IBAN國際銀行帳號號碼未通過驗證,請修正調整。"
|
4
models/__init__.py
Normal file
4
models/__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 res_partner_bank
|
175
models/res_partner_bank.py
Normal file
175
models/res_partner_bank.py
Normal file
@ -0,0 +1,175 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import re
|
||||
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
|
||||
|
||||
def normalize_iban(iban):
|
||||
return re.sub('[\W_]', '', iban or '')
|
||||
|
||||
def pretty_iban(iban):
|
||||
""" return iban in groups of four characters separated by a single space """
|
||||
try:
|
||||
validate_iban(iban)
|
||||
iban = ' '.join([iban[i:i + 4] for i in range(0, len(iban), 4)])
|
||||
except ValidationError:
|
||||
pass
|
||||
return iban
|
||||
|
||||
def get_bban_from_iban(iban):
|
||||
""" Returns the basic bank account number corresponding to an IBAN.
|
||||
Note : the BBAN is not the same as the domestic bank account number !
|
||||
The relation between IBAN, BBAN and domestic can be found here : http://www.ecbs.org/iban.htm
|
||||
"""
|
||||
return normalize_iban(iban)[4:]
|
||||
|
||||
def validate_iban(iban):
|
||||
iban = normalize_iban(iban)
|
||||
if not iban:
|
||||
raise ValidationError(_("There is no IBAN code."))
|
||||
|
||||
country_code = iban[:2].lower()
|
||||
if country_code not in _map_iban_template:
|
||||
raise ValidationError(_("The IBAN is invalid, it should begin with the country code"))
|
||||
|
||||
iban_template = _map_iban_template[country_code]
|
||||
if len(iban) != len(iban_template.replace(' ', '')) or not re.fullmatch("[a-zA-Z0-9]+", iban):
|
||||
raise ValidationError(_("The IBAN does not seem to be correct. You should have entered something like this %s\n"
|
||||
"Where B = National bank code, S = Branch code, C = Account No, k = Check digit", iban_template))
|
||||
|
||||
check_chars = iban[4:] + iban[:4]
|
||||
digits = int(''.join(str(int(char, 36)) for char in check_chars)) # BASE 36: 0..9,A..Z -> 0..35
|
||||
if digits % 97 != 1:
|
||||
raise ValidationError(_("This IBAN does not pass the validation check, please verify it."))
|
||||
|
||||
|
||||
class ResPartnerBank(models.Model):
|
||||
_inherit = "res.partner.bank"
|
||||
|
||||
@api.model
|
||||
def _get_supported_account_types(self):
|
||||
rslt = super(ResPartnerBank, self)._get_supported_account_types()
|
||||
rslt.append(('iban', _('IBAN')))
|
||||
return rslt
|
||||
|
||||
@api.model
|
||||
def retrieve_acc_type(self, acc_number):
|
||||
try:
|
||||
validate_iban(acc_number)
|
||||
return 'iban'
|
||||
except ValidationError:
|
||||
return super(ResPartnerBank, self).retrieve_acc_type(acc_number)
|
||||
|
||||
def get_bban(self):
|
||||
if self.acc_type != 'iban':
|
||||
raise UserError(_("Cannot compute the BBAN because the account number is not an IBAN."))
|
||||
return get_bban_from_iban(self.acc_number)
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
for vals in vals_list:
|
||||
if vals.get('acc_number'):
|
||||
try:
|
||||
validate_iban(vals['acc_number'])
|
||||
vals['acc_number'] = pretty_iban(normalize_iban(vals['acc_number']))
|
||||
except ValidationError:
|
||||
pass
|
||||
return super(ResPartnerBank, self).create(vals_list)
|
||||
|
||||
def write(self, vals):
|
||||
if vals.get('acc_number'):
|
||||
try:
|
||||
validate_iban(vals['acc_number'])
|
||||
vals['acc_number'] = pretty_iban(normalize_iban(vals['acc_number']))
|
||||
except ValidationError:
|
||||
pass
|
||||
return super(ResPartnerBank, self).write(vals)
|
||||
|
||||
@api.constrains('acc_number')
|
||||
def _check_iban(self):
|
||||
for bank in self:
|
||||
if bank.acc_type == 'iban':
|
||||
validate_iban(bank.acc_number)
|
||||
|
||||
def check_iban(self, iban=''):
|
||||
try:
|
||||
validate_iban(iban)
|
||||
return True
|
||||
except ValidationError:
|
||||
return False
|
||||
|
||||
# Map ISO 3166-1 -> IBAN template, as described here :
|
||||
# http://en.wikipedia.org/wiki/International_Bank_Account_Number#IBAN_formats_by_country
|
||||
_map_iban_template = {
|
||||
'ad': 'ADkk BBBB SSSS CCCC CCCC CCCC', # Andorra
|
||||
'ae': 'AEkk BBBC CCCC CCCC CCCC CCC', # United Arab Emirates
|
||||
'al': 'ALkk BBBS SSSK CCCC CCCC CCCC CCCC', # Albania
|
||||
'at': 'ATkk BBBB BCCC CCCC CCCC', # Austria
|
||||
'az': 'AZkk BBBB CCCC CCCC CCCC CCCC CCCC', # Azerbaijan
|
||||
'ba': 'BAkk BBBS SSCC CCCC CCKK', # Bosnia and Herzegovina
|
||||
'be': 'BEkk BBBC CCCC CCXX', # Belgium
|
||||
'bg': 'BGkk BBBB SSSS DDCC CCCC CC', # Bulgaria
|
||||
'bh': 'BHkk BBBB CCCC CCCC CCCC CC', # Bahrain
|
||||
'br': 'BRkk BBBB BBBB SSSS SCCC CCCC CCCT N', # Brazil
|
||||
'by': 'BYkk BBBB AAAA CCCC CCCC CCCC CCCC', # Belarus
|
||||
'ch': 'CHkk BBBB BCCC CCCC CCCC C', # Switzerland
|
||||
'cr': 'CRkk BBBC CCCC CCCC CCCC CC', # Costa Rica
|
||||
'cy': 'CYkk BBBS SSSS CCCC CCCC CCCC CCCC', # Cyprus
|
||||
'cz': 'CZkk BBBB SSSS SSCC CCCC CCCC', # Czech Republic
|
||||
'de': 'DEkk BBBB BBBB CCCC CCCC CC', # Germany
|
||||
'dk': 'DKkk BBBB CCCC CCCC CC', # Denmark
|
||||
'do': 'DOkk BBBB CCCC CCCC CCCC CCCC CCCC', # Dominican Republic
|
||||
'ee': 'EEkk BBSS CCCC CCCC CCCK', # Estonia
|
||||
'es': 'ESkk BBBB SSSS KKCC CCCC CCCC', # Spain
|
||||
'fi': 'FIkk BBBB BBCC CCCC CK', # Finland
|
||||
'fo': 'FOkk CCCC CCCC CCCC CC', # Faroe Islands
|
||||
'fr': 'FRkk BBBB BGGG GGCC CCCC CCCC CKK', # France
|
||||
'gb': 'GBkk BBBB SSSS SSCC CCCC CC', # United Kingdom
|
||||
'ge': 'GEkk BBCC CCCC CCCC CCCC CC', # Georgia
|
||||
'gi': 'GIkk BBBB CCCC CCCC CCCC CCC', # Gibraltar
|
||||
'gl': 'GLkk BBBB CCCC CCCC CC', # Greenland
|
||||
'gr': 'GRkk BBBS SSSC CCCC CCCC CCCC CCC', # Greece
|
||||
'gt': 'GTkk BBBB MMTT CCCC CCCC CCCC CCCC', # Guatemala
|
||||
'hr': 'HRkk BBBB BBBC CCCC CCCC C', # Croatia
|
||||
'hu': 'HUkk BBBS SSSC CCCC CCCC CCCC CCCC', # Hungary
|
||||
'ie': 'IEkk BBBB SSSS SSCC CCCC CC', # Ireland
|
||||
'il': 'ILkk BBBS SSCC CCCC CCCC CCC', # Israel
|
||||
'is': 'ISkk BBBB SSCC CCCC XXXX XXXX XX', # Iceland
|
||||
'it': 'ITkk KBBB BBSS SSSC CCCC CCCC CCC', # Italy
|
||||
'jo': 'JOkk BBBB NNNN CCCC CCCC CCCC CCCC CC', # Jordan
|
||||
'kw': 'KWkk BBBB CCCC CCCC CCCC CCCC CCCC CC', # Kuwait
|
||||
'kz': 'KZkk BBBC CCCC CCCC CCCC', # Kazakhstan
|
||||
'lb': 'LBkk BBBB CCCC CCCC CCCC CCCC CCCC', # Lebanon
|
||||
'li': 'LIkk BBBB BCCC CCCC CCCC C', # Liechtenstein
|
||||
'lt': 'LTkk BBBB BCCC CCCC CCCC', # Lithuania
|
||||
'lu': 'LUkk BBBC CCCC CCCC CCCC', # Luxembourg
|
||||
'lv': 'LVkk BBBB CCCC CCCC CCCC C', # Latvia
|
||||
'mc': 'MCkk BBBB BGGG GGCC CCCC CCCC CKK', # Monaco
|
||||
'md': 'MDkk BBCC CCCC CCCC CCCC CCCC', # Moldova
|
||||
'me': 'MEkk BBBC CCCC CCCC CCCC KK', # Montenegro
|
||||
'mk': 'MKkk BBBC CCCC CCCC CKK', # Macedonia
|
||||
'mr': 'MRkk BBBB BSSS SSCC CCCC CCCC CKK', # Mauritania
|
||||
'mt': 'MTkk BBBB SSSS SCCC CCCC CCCC CCCC CCC', # Malta
|
||||
'mu': 'MUkk BBBB BBSS CCCC CCCC CCCC CCCC CC', # Mauritius
|
||||
'nl': 'NLkk BBBB CCCC CCCC CC', # Netherlands
|
||||
'no': 'NOkk BBBB CCCC CCK', # Norway
|
||||
'pk': 'PKkk BBBB CCCC CCCC CCCC CCCC', # Pakistan
|
||||
'pl': 'PLkk BBBS SSSK CCCC CCCC CCCC CCCC', # Poland
|
||||
'ps': 'PSkk BBBB XXXX XXXX XCCC CCCC CCCC C', # Palestinian
|
||||
'pt': 'PTkk BBBB SSSS CCCC CCCC CCCK K', # Portugal
|
||||
'qa': 'QAkk BBBB CCCC CCCC CCCC CCCC CCCC C', # Qatar
|
||||
'ro': 'ROkk BBBB CCCC CCCC CCCC CCCC', # Romania
|
||||
'rs': 'RSkk BBBC CCCC CCCC CCCC KK', # Serbia
|
||||
'sa': 'SAkk BBCC CCCC CCCC CCCC CCCC', # Saudi Arabia
|
||||
'se': 'SEkk BBBB CCCC CCCC CCCC CCCC', # Sweden
|
||||
'si': 'SIkk BBSS SCCC CCCC CKK', # Slovenia
|
||||
'sk': 'SKkk BBBB SSSS SSCC CCCC CCCC', # Slovakia
|
||||
'sm': 'SMkk KBBB BBSS SSSC CCCC CCCC CCC', # San Marino
|
||||
'tn': 'TNkk BBSS SCCC CCCC CCCC CCCC', # Tunisia
|
||||
'tr': 'TRkk BBBB BRCC CCCC CCCC CCCC CC', # Turkey
|
||||
'ua': 'UAkk BBBB BBCC CCCC CCCC CCCC CCCC C', # Ukraine
|
||||
'vg': 'VGkk BBBB CCCC CCCC CCCC CCCC', # Virgin Islands
|
||||
'xk': 'XKkk BBBB CCCC CCCC CCCC', # Kosovo
|
||||
}
|
35
static/src/components/iban_widget/iban_widget.js
Normal file
35
static/src/components/iban_widget/iban_widget.js
Normal file
@ -0,0 +1,35 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { registry } from "@web/core/registry";
|
||||
import { CharField, charField } from "@web/views/fields/char/char_field";
|
||||
import { useDebounced } from "@web/core/utils/timing";
|
||||
import { useService } from "@web/core/utils/hooks";
|
||||
import { useState } from "@odoo/owl";
|
||||
|
||||
export const DELAY = 400;
|
||||
|
||||
export class IbanWidget extends CharField {
|
||||
setup() {
|
||||
super.setup();
|
||||
this.state = useState({ isValidIBAN: null });
|
||||
this.orm = useService("orm");
|
||||
this.validateIbanDebounced = useDebounced(async (ev) => {
|
||||
const iban = ev.target.value;
|
||||
if (!iban) {
|
||||
this.state.isValidIBAN = null;
|
||||
} else if (!/[A-Za-z]{2}.{3,}/.test(iban)) {
|
||||
this.state.isValidIBAN = false;
|
||||
} else {
|
||||
this.state.isValidIBAN = await this.orm.call("res.partner.bank", "check_iban", [[], iban]);
|
||||
}
|
||||
}, DELAY);
|
||||
}
|
||||
}
|
||||
IbanWidget.template = "base_iban.iban";
|
||||
|
||||
export const ibanWidget = {
|
||||
...charField,
|
||||
component: IbanWidget,
|
||||
};
|
||||
|
||||
registry.category("fields").add("iban", ibanWidget);
|
15
static/src/components/iban_widget/iban_widget.scss
Normal file
15
static/src/components/iban_widget/iban_widget.scss
Normal file
@ -0,0 +1,15 @@
|
||||
.o_form_view {
|
||||
|
||||
// Iban widget warning
|
||||
.o_iban {
|
||||
display: inline-flex;
|
||||
margin-left: -15px;
|
||||
}
|
||||
.o_iban_fail {
|
||||
cursor: help;
|
||||
}
|
||||
input.o_input.o_iban_input_with_validator {
|
||||
padding-right: 17px!important;
|
||||
}
|
||||
|
||||
}
|
19
static/src/components/iban_widget/iban_widget.xml
Normal file
19
static/src/components/iban_widget/iban_widget.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<templates>
|
||||
<t t-name="base_iban.iban" t-inherit="web.CharField">
|
||||
<xpath expr="//input" position="attributes">
|
||||
<attribute name="class" add="o_iban_input_with_validator" separator=" "/>
|
||||
<attribute name="t-on-input">validateIbanDebounced</attribute>
|
||||
<attribute name="t-on-focus">validateIbanDebounced</attribute>
|
||||
<attribute name="t-on-blur">(ev) => { this.state.isValidIBAN = null; }</attribute>
|
||||
</xpath>
|
||||
<xpath expr="//input" position="after">
|
||||
<t t-if="this.state.isValidIBAN === true">
|
||||
<i class="fa fa-check o_iban text-success"/>
|
||||
</t>
|
||||
<t t-elif="this.state.isValidIBAN === false">
|
||||
<i class="fa fa-times o_iban text-danger o_iban_fail" title="Account isn't a valid IBAN"/>
|
||||
</t>
|
||||
</xpath>
|
||||
</t>
|
||||
</templates>
|
5
static/src/tests/helpers/model_definitions_setup.js
Normal file
5
static/src/tests/helpers/model_definitions_setup.js
Normal file
@ -0,0 +1,5 @@
|
||||
/** @odoo-module **/
|
||||
|
||||
import { addModelNamesToFetch } from '@bus/../tests/helpers/model_definitions_helpers';
|
||||
|
||||
addModelNamesToFetch(['res.partner.bank']);
|
80
static/src/tests/iban_widget_test.js
Normal file
80
static/src/tests/iban_widget_test.js
Normal file
@ -0,0 +1,80 @@
|
||||
/* @odoo-module */
|
||||
|
||||
import { DELAY } from "@base_iban/components/iban_widget/iban_widget";
|
||||
import { startServer } from "@bus/../tests/helpers/mock_python_environment";
|
||||
import { start } from "@mail/../tests/helpers/test_utils";
|
||||
import { click, contains, insertText } from "@web/../tests/utils";
|
||||
|
||||
QUnit.module("Fields", {}, function () {
|
||||
QUnit.module("IbanWidget");
|
||||
const [validIban, invalidIban] = ["BE12651194580992", "invalidIban!"];
|
||||
|
||||
const openPreparedView = async () => {
|
||||
const pyEnv = await startServer();
|
||||
const partnerId = pyEnv["res.partner"].create([
|
||||
{
|
||||
name: "Awesome partner",
|
||||
bank_ids: [pyEnv["res.partner.bank"].create([{ acc_number: "" }])],
|
||||
},
|
||||
]);
|
||||
const views = {
|
||||
"res.partner,false,form": `<form>
|
||||
<sheet>
|
||||
<group>
|
||||
<field name="name"/>
|
||||
</group>
|
||||
<field name="bank_ids">
|
||||
<tree editable="bottom">
|
||||
<field name="acc_number" widget="iban"/>
|
||||
</tree>
|
||||
</field>
|
||||
</sheet>
|
||||
</form>`,
|
||||
};
|
||||
const { advanceTime, openView } = await start({
|
||||
serverData: { views },
|
||||
hasTimeControl: true,
|
||||
mockRPC: function (route, args) {
|
||||
if (args.method === "check_iban") {
|
||||
const iban = args.args[1].replace(/\s/g, "");
|
||||
return Promise.resolve(iban === validIban);
|
||||
}
|
||||
},
|
||||
});
|
||||
await openView({
|
||||
res_id: partnerId,
|
||||
res_model: "res.partner",
|
||||
views: [[false, "form"]],
|
||||
});
|
||||
return { advanceTime };
|
||||
};
|
||||
|
||||
QUnit.test("Iban Widget full flow [REQUIRE FOCUS]", async () => {
|
||||
const { advanceTime } = await openPreparedView();
|
||||
await contains("td.o_iban_cell");
|
||||
await contains(".o_iban", { count: 0 }); // "Shouldn't display any validation icon while not editing a specific line"
|
||||
await click("td.o_iban_cell");
|
||||
await contains(".o_iban_input_with_validator");
|
||||
await contains(".o_iban", { count: 0 }); // "Shouldn't display any validation icon while iban is empty"
|
||||
await insertText(".o_iban_input_with_validator", invalidIban, { replace: true });
|
||||
await contains(".o_iban", { count: 0 }); // "Shouldn't change its state of display before edition is finished"
|
||||
await advanceTime(DELAY);
|
||||
await contains(".o_iban"); // "Should contain a validation icon 400ms after edition"
|
||||
await contains("i.fa.fa-times.o_iban_fail"); // "The validation icon should be the failed one"
|
||||
await contains("i.fa.fa-check.o_iban", { count: 0 }); // "The validation icon shouldn't be the successful one"
|
||||
await click(".o_form_button_save");
|
||||
await contains(".o_iban", { count: 0 }); // "Shouldn't display any validation while not editing"
|
||||
await click("td.o_iban_cell");
|
||||
await contains(".o_iban_input_with_validator");
|
||||
await advanceTime(DELAY);
|
||||
await contains("i.fa.fa-times.o_iban_fail"); // "The validation icon should be present while clicking on an already filled IBAN"
|
||||
await insertText(".o_iban_cell .o_input", validIban, { replace: true });
|
||||
await contains("i.fa.fa-times.o_iban_fail"); // "The validation icon shouldn't change during the edition"
|
||||
await advanceTime(DELAY);
|
||||
await contains(".o_iban"); // "Should contain a validation icon 400ms after edition"
|
||||
await contains("i.fa.fa-check.o_iban"); // "The validation icon should be the successful one"
|
||||
await contains("i.fa.fa-times.o_iban_fail", { count: 0 }); // "The validation icon shouldn't be the failed one"
|
||||
await click(".o_form_button_save");
|
||||
await contains(".o_iban", { count: 0 }); // "Shouldn't display any validation while not editing"
|
||||
});
|
||||
});
|
13
views/partner_view.xml
Normal file
13
views/partner_view.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="view_partner_property_iban_form" model="ir.ui.view">
|
||||
<field name="name">res.partner.form.inherit</field>
|
||||
<field name="model">res.partner</field>
|
||||
<field name="inherit_id" ref="account.view_partner_property_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='acc_number']" position="attributes">
|
||||
<attribute name="widget">iban</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
13
views/setup_wizards_view.xml
Normal file
13
views/setup_wizards_view.xml
Normal file
@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="setup_bank_account_iban_wizard" model="ir.ui.view">
|
||||
<field name="name">account.online.sync.res.partner.bank.setup.form.inherit</field>
|
||||
<field name="model">account.setup.bank.manual.config</field>
|
||||
<field name="inherit_id" ref="account.setup_bank_account_wizard"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//field[@name='acc_number']" position="attributes">
|
||||
<attribute name="widget">iban</attribute>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user