From 34b75b908079ad85b026ad05f0cf9da06309cfdf Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Wed, 19 Feb 2025 14:07:21 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __init__.py | 4 + __manifest__.py | 28 +++ data/res_partner_bank_demo.xml | 27 +++ i18n/af.po | 73 ++++++++ i18n/am.po | 73 ++++++++ i18n/ar.po | 78 ++++++++ i18n/az.po | 77 ++++++++ i18n/base_iban.pot | 72 +++++++ i18n/bg.po | 80 ++++++++ i18n/bs.po | 76 ++++++++ i18n/ca.po | 82 ++++++++ i18n/cs.po | 79 ++++++++ i18n/da.po | 78 ++++++++ i18n/de.po | 79 ++++++++ i18n/el.po | 79 ++++++++ i18n/en_GB.po | 73 ++++++++ i18n/es.po | 80 ++++++++ i18n/es_419.po | 78 ++++++++ i18n/es_BO.po | 73 ++++++++ i18n/es_CL.po | 73 ++++++++ i18n/es_CO.po | 73 ++++++++ i18n/es_CR.po | 73 ++++++++ i18n/es_DO.po | 73 ++++++++ i18n/es_EC.po | 73 ++++++++ i18n/es_PE.po | 73 ++++++++ i18n/es_PY.po | 73 ++++++++ i18n/es_VE.po | 73 ++++++++ i18n/et.po | 82 ++++++++ i18n/eu.po | 73 ++++++++ i18n/fa.po | 79 ++++++++ i18n/fi.po | 82 ++++++++ i18n/fo.po | 73 ++++++++ i18n/fr.po | 80 ++++++++ i18n/fr_BE.po | 75 ++++++++ i18n/fr_CA.po | 73 ++++++++ i18n/gl.po | 73 ++++++++ i18n/gu.po | 77 ++++++++ i18n/he.po | 80 ++++++++ i18n/hr.po | 80 ++++++++ i18n/hu.po | 80 ++++++++ i18n/hy.po | 75 ++++++++ i18n/id.po | 80 ++++++++ i18n/is.po | 73 ++++++++ i18n/it.po | 79 ++++++++ i18n/ja.po | 78 ++++++++ i18n/ka.po | 73 ++++++++ i18n/kab.po | 73 ++++++++ i18n/km.po | 76 ++++++++ i18n/ko.po | 78 ++++++++ i18n/lb.po | 73 ++++++++ i18n/lo.po | 73 ++++++++ i18n/lt.po | 80 ++++++++ i18n/lv.po | 76 ++++++++ i18n/mk.po | 73 ++++++++ i18n/mn.po | 80 ++++++++ i18n/nb.po | 80 ++++++++ i18n/ne.po | 73 ++++++++ i18n/nl.po | 79 ++++++++ i18n/pl.po | 78 ++++++++ i18n/pt.po | 79 ++++++++ i18n/pt_BR.po | 80 ++++++++ i18n/ro.po | 79 ++++++++ i18n/ru.po | 80 ++++++++ i18n/sk.po | 79 ++++++++ i18n/sl.po | 77 ++++++++ i18n/sq.po | 73 ++++++++ i18n/sr.po | 80 ++++++++ i18n/sr@latin.po | 77 ++++++++ i18n/sv.po | 83 +++++++++ i18n/te.po | 75 ++++++++ i18n/th.po | 79 ++++++++ i18n/tr.po | 83 +++++++++ i18n/uk.po | 78 ++++++++ i18n/vi.po | 78 ++++++++ i18n/zh_CN.po | 79 ++++++++ i18n/zh_TW.po | 79 ++++++++ models/__init__.py | 4 + models/res_partner_bank.py | 175 ++++++++++++++++++ .../src/components/iban_widget/iban_widget.js | 35 ++++ .../components/iban_widget/iban_widget.scss | 15 ++ .../components/iban_widget/iban_widget.xml | 19 ++ .../tests/helpers/model_definitions_setup.js | 5 + static/src/tests/iban_widget_test.js | 80 ++++++++ views/partner_view.xml | 13 ++ views/setup_wizards_view.xml | 13 ++ 85 files changed, 6027 insertions(+) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 data/res_partner_bank_demo.xml create mode 100644 i18n/af.po create mode 100644 i18n/am.po create mode 100644 i18n/ar.po create mode 100644 i18n/az.po create mode 100644 i18n/base_iban.pot create mode 100644 i18n/bg.po create mode 100644 i18n/bs.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/el.po create mode 100644 i18n/en_GB.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/es_BO.po create mode 100644 i18n/es_CL.po create mode 100644 i18n/es_CO.po create mode 100644 i18n/es_CR.po create mode 100644 i18n/es_DO.po create mode 100644 i18n/es_EC.po create mode 100644 i18n/es_PE.po create mode 100644 i18n/es_PY.po create mode 100644 i18n/es_VE.po create mode 100644 i18n/et.po create mode 100644 i18n/eu.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fo.po create mode 100644 i18n/fr.po create mode 100644 i18n/fr_BE.po create mode 100644 i18n/fr_CA.po create mode 100644 i18n/gl.po create mode 100644 i18n/gu.po create mode 100644 i18n/he.po create mode 100644 i18n/hr.po create mode 100644 i18n/hu.po create mode 100644 i18n/hy.po create mode 100644 i18n/id.po create mode 100644 i18n/is.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ka.po create mode 100644 i18n/kab.po create mode 100644 i18n/km.po create mode 100644 i18n/ko.po create mode 100644 i18n/lb.po create mode 100644 i18n/lo.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/mk.po create mode 100644 i18n/mn.po create mode 100644 i18n/nb.po create mode 100644 i18n/ne.po create mode 100644 i18n/nl.po create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ro.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sq.po create mode 100644 i18n/sr.po create mode 100644 i18n/sr@latin.po create mode 100644 i18n/sv.po create mode 100644 i18n/te.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/res_partner_bank.py create mode 100644 static/src/components/iban_widget/iban_widget.js create mode 100644 static/src/components/iban_widget/iban_widget.scss create mode 100644 static/src/components/iban_widget/iban_widget.xml create mode 100644 static/src/tests/helpers/model_definitions_setup.js create mode 100644 static/src/tests/iban_widget_test.js create mode 100644 views/partner_view.xml create mode 100644 views/setup_wizards_view.xml diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..dc5e6b6 --- /dev/null +++ b/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..e217035 --- /dev/null +++ b/__manifest__.py @@ -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', +} diff --git a/data/res_partner_bank_demo.xml b/data/res_partner_bank_demo.xml new file mode 100644 index 0000000..6959c99 --- /dev/null +++ b/data/res_partner_bank_demo.xml @@ -0,0 +1,27 @@ + + + + + + iban + BE39103123456719 + + + + + + iban + SI56191000000123438 + + + + + + iban + BE61310126985517 + + + + + + diff --git a/i18n/af.po b/i18n/af.po new file mode 100644 index 0000000..0dd463c --- /dev/null +++ b/i18n/af.po @@ -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 "" diff --git a/i18n/am.po b/i18n/am.po new file mode 100644 index 0000000..750e810 --- /dev/null +++ b/i18n/am.po @@ -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 "" diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..025a950 --- /dev/null +++ b/i18n/ar.po @@ -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 هذا اختبار التصديق، يرجى التحقق منه. " diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..cc7e785 --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Jumshud Sultanov , 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 , 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 "" diff --git a/i18n/base_iban.pot b/i18n/base_iban.pot new file mode 100644 index 0000000..2e5bbc7 --- /dev/null +++ b/i18n/base_iban.pot @@ -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 "" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..3643a56 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# KeyVillage, 2023 +# Maria Boyadjieva , 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 , 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 не издържа проверката за валидиране, моля проверете го." diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..b462f14 --- /dev/null +++ b/i18n/bs.po @@ -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 "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..ef67fe7 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# RGB Consulting , 2023 +# Ivan Espinola, 2023 +# Martin Trigaux, 2023 +# Arnau Ros, 2023 +# Marc Tormo i Bochaca , 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 , 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." diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..3aadb41 --- /dev/null +++ b/i18n/cs.po @@ -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." diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..12c5638 --- /dev/null +++ b/i18n/da.po @@ -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. " diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..672ca38 --- /dev/null +++ b/i18n/de.po @@ -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." diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..df4cada --- /dev/null +++ b/i18n/el.po @@ -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 , 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 , 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 "Αυτός ο ΙΒΑΝ δεν περνά τον έλεγχο εγκυρότητας, παρακαλώ επαληθεύστε τον." diff --git a/i18n/en_GB.po b/i18n/en_GB.po new file mode 100644 index 0000000..4c5a66e --- /dev/null +++ b/i18n/en_GB.po @@ -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 "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..8110d68 --- /dev/null +++ b/i18n/es.po @@ -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." diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..55d05fe --- /dev/null +++ b/i18n/es_419.po @@ -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." diff --git a/i18n/es_BO.po b/i18n/es_BO.po new file mode 100644 index 0000000..c481a6c --- /dev/null +++ b/i18n/es_BO.po @@ -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 "" diff --git a/i18n/es_CL.po b/i18n/es_CL.po new file mode 100644 index 0000000..1d89c80 --- /dev/null +++ b/i18n/es_CL.po @@ -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 "" diff --git a/i18n/es_CO.po b/i18n/es_CO.po new file mode 100644 index 0000000..5548732 --- /dev/null +++ b/i18n/es_CO.po @@ -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 "" diff --git a/i18n/es_CR.po b/i18n/es_CR.po new file mode 100644 index 0000000..12e6e5f --- /dev/null +++ b/i18n/es_CR.po @@ -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 "" diff --git a/i18n/es_DO.po b/i18n/es_DO.po new file mode 100644 index 0000000..bb9cd9e --- /dev/null +++ b/i18n/es_DO.po @@ -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 "" diff --git a/i18n/es_EC.po b/i18n/es_EC.po new file mode 100644 index 0000000..9d4cb70 --- /dev/null +++ b/i18n/es_EC.po @@ -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 "" diff --git a/i18n/es_PE.po b/i18n/es_PE.po new file mode 100644 index 0000000..0a7b290 --- /dev/null +++ b/i18n/es_PE.po @@ -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 "" diff --git a/i18n/es_PY.po b/i18n/es_PY.po new file mode 100644 index 0000000..13c0cf1 --- /dev/null +++ b/i18n/es_PY.po @@ -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 "" diff --git a/i18n/es_VE.po b/i18n/es_VE.po new file mode 100644 index 0000000..4a960d5 --- /dev/null +++ b/i18n/es_VE.po @@ -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 "" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..175d94b --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,82 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Anna, 2023 +# Aveli Kannel , 2023 +# Eneli Õigus , 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 , 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." diff --git a/i18n/eu.po b/i18n/eu.po new file mode 100644 index 0000000..5ded1e9 --- /dev/null +++ b/i18n/eu.po @@ -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 "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..6565b0b --- /dev/null +++ b/i18n/fa.po @@ -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 از بررسی اعتبار سنجی عبور نمی کند، لطفاً آن را تأیید کنید." diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..e3737e7 --- /dev/null +++ b/i18n/fi.po @@ -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 , 2023 +# Martin Trigaux, 2023 +# Kim Asplund , 2023 +# Eino Mäkitalo , 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 , 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" diff --git a/i18n/fo.po b/i18n/fo.po new file mode 100644 index 0000000..3960bc0 --- /dev/null +++ b/i18n/fo.po @@ -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 "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..a4f3610 --- /dev/null +++ b/i18n/fr.po @@ -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." diff --git a/i18n/fr_BE.po b/i18n/fr_BE.po new file mode 100644 index 0000000..d8e0ee0 --- /dev/null +++ b/i18n/fr_BE.po @@ -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 "" diff --git a/i18n/fr_CA.po b/i18n/fr_CA.po new file mode 100644 index 0000000..80542ad --- /dev/null +++ b/i18n/fr_CA.po @@ -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 "" diff --git a/i18n/gl.po b/i18n/gl.po new file mode 100644 index 0000000..5d08832 --- /dev/null +++ b/i18n/gl.po @@ -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 "" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..b3d44b5 --- /dev/null +++ b/i18n/gu.po @@ -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 "" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..d7b719b --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# ZVI BLONDER , 2023 +# דודי מלכה , 2023 +# Yihya Hugirat , 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 , 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 הזה אינו עובר את בדיקת האימות, נא אמת אותו." diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..9e45430 --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Martin Trigaux, 2022 +# Bole , 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 , 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!" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..dd68d29 --- /dev/null +++ b/i18n/hu.po @@ -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 , 2023 +# gezza , 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 , 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." diff --git a/i18n/hy.po b/i18n/hy.po new file mode 100644 index 0000000..5a18ea7 --- /dev/null +++ b/i18n/hy.po @@ -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 "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..c0fd646 --- /dev/null +++ b/i18n/id.po @@ -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." diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..13e7004 --- /dev/null +++ b/i18n/is.po @@ -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 "" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..a9dba8a --- /dev/null +++ b/i18n/it.po @@ -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." diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..29b6cd5 --- /dev/null +++ b/i18n/ja.po @@ -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は、検証チェックに合格しませんでした。確認してください。" diff --git a/i18n/ka.po b/i18n/ka.po new file mode 100644 index 0000000..c692928 --- /dev/null +++ b/i18n/ka.po @@ -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 "" diff --git a/i18n/kab.po b/i18n/kab.po new file mode 100644 index 0000000..42bedc7 --- /dev/null +++ b/i18n/kab.po @@ -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 "" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..6fe89f2 --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Sengtha Chay , 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 , 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 "" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..3249b44 --- /dev/null +++ b/i18n/ko.po @@ -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이 유효성 검사를 통과하지 못했습니다. 확인하시기 바랍니다." diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..043decb --- /dev/null +++ b/i18n/lb.po @@ -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 "" diff --git a/i18n/lo.po b/i18n/lo.po new file mode 100644 index 0000000..b35aed2 --- /dev/null +++ b/i18n/lo.po @@ -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 "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..586e1e7 --- /dev/null +++ b/i18n/lt.po @@ -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 , 2023 +# Linas Versada , 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 , 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į." diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..cfbce73 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,76 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Konstantins Zabogonskis , 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 , 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 "" diff --git a/i18n/mk.po b/i18n/mk.po new file mode 100644 index 0000000..aee937f --- /dev/null +++ b/i18n/mk.po @@ -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 "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..337d39d --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# nurbakhit nurka , 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 баталгаажуулалтын шалгалтыг давахгүй байна, баталгаажуулна уу." diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..5c37c4c --- /dev/null +++ b/i18n/nb.po @@ -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." diff --git a/i18n/ne.po b/i18n/ne.po new file mode 100644 index 0000000..6cba13c --- /dev/null +++ b/i18n/ne.po @@ -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 "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..f69a4c5 --- /dev/null +++ b/i18n/nl.po @@ -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." diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..54d4846 --- /dev/null +++ b/i18n/pl.po @@ -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." diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..4876993 --- /dev/null +++ b/i18n/pt.po @@ -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." diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..3f84e8b --- /dev/null +++ b/i18n/pt_BR.po @@ -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." diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..3bd0dc0 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,79 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Dorin Hongu , 2022 +# Martin Trigaux, 2022 +# Foldi Robert , 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 , 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" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..db746c5 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Vasiliy Korobatov , 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 не прошел проверку на валидность, пожалуйста, проверьте его." diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..026c1ff --- /dev/null +++ b/i18n/sk.po @@ -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." diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..825f2a4 --- /dev/null +++ b/i18n/sl.po @@ -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 , 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 , 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 "" diff --git a/i18n/sq.po b/i18n/sq.po new file mode 100644 index 0000000..92b3cdc --- /dev/null +++ b/i18n/sq.po @@ -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 "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..9e0f1a6 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Dragan Vukosavljevic , 2023 +# Milan Bojovic , 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." diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..6bf8d94 --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,77 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Nemanja Dragovic , 2017 +# Martin Trigaux , 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 , 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 "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..1ef55c1 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * base_iban +# +# Translators: +# Chrille Hedberg , 2023 +# Simon Nilsson, 2023 +# Martin Trigaux, 2023 +# Kim Asplund , 2023 +# Martin Wilderoth , 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 , 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." diff --git a/i18n/te.po b/i18n/te.po new file mode 100644 index 0000000..63299cd --- /dev/null +++ b/i18n/te.po @@ -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 "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..23289af --- /dev/null +++ b/i18n/th.po @@ -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 นี้ไม่ผ่านการตรวจสอบความถูกต้อง โปรดยืนยัน" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..78c0a0c --- /dev/null +++ b/i18n/tr.po @@ -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 , 2023 +# Tugay Hatıl , 2023 +# Murat Kaplan , 2023 +# Umur Akın , 2023 +# Ayhan KIZILTAN , 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 , 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." diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..ceb0e05 --- /dev/null +++ b/i18n/uk.po @@ -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 не пройде перевірку валідації, будь ласка, підтвердіть це." diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..c8ab09d --- /dev/null +++ b/i18n/vi.po @@ -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." diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..a9b339c --- /dev/null +++ b/i18n/zh_CN.po @@ -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 "国际银行账号号码没有通过校验,请改正。" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..e48d6ed --- /dev/null +++ b/i18n/zh_TW.po @@ -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國際銀行帳號號碼未通過驗證,請修正調整。" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..20f3eef --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import res_partner_bank \ No newline at end of file diff --git a/models/res_partner_bank.py b/models/res_partner_bank.py new file mode 100644 index 0000000..0decb52 --- /dev/null +++ b/models/res_partner_bank.py @@ -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 +} diff --git a/static/src/components/iban_widget/iban_widget.js b/static/src/components/iban_widget/iban_widget.js new file mode 100644 index 0000000..f321a04 --- /dev/null +++ b/static/src/components/iban_widget/iban_widget.js @@ -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); diff --git a/static/src/components/iban_widget/iban_widget.scss b/static/src/components/iban_widget/iban_widget.scss new file mode 100644 index 0000000..10ab6c8 --- /dev/null +++ b/static/src/components/iban_widget/iban_widget.scss @@ -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; + } + +} diff --git a/static/src/components/iban_widget/iban_widget.xml b/static/src/components/iban_widget/iban_widget.xml new file mode 100644 index 0000000..60f6b4f --- /dev/null +++ b/static/src/components/iban_widget/iban_widget.xml @@ -0,0 +1,19 @@ + + + + + + validateIbanDebounced + validateIbanDebounced + (ev) => { this.state.isValidIBAN = null; } + + + + + + + + + + + diff --git a/static/src/tests/helpers/model_definitions_setup.js b/static/src/tests/helpers/model_definitions_setup.js new file mode 100644 index 0000000..81ca26b --- /dev/null +++ b/static/src/tests/helpers/model_definitions_setup.js @@ -0,0 +1,5 @@ +/** @odoo-module **/ + +import { addModelNamesToFetch } from '@bus/../tests/helpers/model_definitions_helpers'; + +addModelNamesToFetch(['res.partner.bank']); diff --git a/static/src/tests/iban_widget_test.js b/static/src/tests/iban_widget_test.js new file mode 100644 index 0000000..f6e4eec --- /dev/null +++ b/static/src/tests/iban_widget_test.js @@ -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": `
+ + + + + + + + + + +
`, + }; + 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" + }); +}); diff --git a/views/partner_view.xml b/views/partner_view.xml new file mode 100644 index 0000000..44f2d37 --- /dev/null +++ b/views/partner_view.xml @@ -0,0 +1,13 @@ + + + + res.partner.form.inherit + res.partner + + + + iban + + + + diff --git a/views/setup_wizards_view.xml b/views/setup_wizards_view.xml new file mode 100644 index 0000000..21b77c6 --- /dev/null +++ b/views/setup_wizards_view.xml @@ -0,0 +1,13 @@ + + + + account.online.sync.res.partner.bank.setup.form.inherit + account.setup.bank.manual.config + + + + iban + + + +