Начальное наполнение
This commit is contained in:
parent
2625a78371
commit
e31f05cd5f
3
__init__.py
Normal file
3
__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
16
__manifest__.py
Normal file
16
__manifest__.py
Normal file
@ -0,0 +1,16 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'account_qr_code_emv',
|
||||
'category': 'Accounting/Payment',
|
||||
'version': '1.0',
|
||||
'description': """
|
||||
Bridge module addings support for EMV Merchant-Presented QR-code generation for Payment System.
|
||||
""",
|
||||
'author': 'Odoo SA',
|
||||
'depends': ['account'],
|
||||
'data': [
|
||||
'views/res_bank_views.xml',
|
||||
],
|
||||
'license': 'LGPL-3',
|
||||
}
|
52
const.py
Normal file
52
const.py
Normal file
@ -0,0 +1,52 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
CURRENCY_MAPPING = {
|
||||
'ARS': '032',
|
||||
'AUD': '036',
|
||||
'BHD': '048',
|
||||
'KHR': '116',
|
||||
'CAD': '124',
|
||||
'LKR': '144',
|
||||
'CNY': '156',
|
||||
'HRK': '191',
|
||||
'CZK': '203',
|
||||
'DKK': '208',
|
||||
'HKD': '344',
|
||||
'HUF': '348',
|
||||
'ISK': '352',
|
||||
'INR': '356',
|
||||
'ILS': '376',
|
||||
'JPY': '392',
|
||||
'KRW': '410',
|
||||
'KWD': '414',
|
||||
'MYR': '458',
|
||||
'MUR': '480',
|
||||
'MXN': '484',
|
||||
'NPR': '524',
|
||||
'NZD': '554',
|
||||
'NOK': '578',
|
||||
'QAR': '634',
|
||||
'RUB': '643',
|
||||
'SAR': '682',
|
||||
'SGD': '702',
|
||||
'VND': '704',
|
||||
'ZAR': '710',
|
||||
'SEK': '752',
|
||||
'CHF': '756',
|
||||
'THB': '764',
|
||||
'AED': '784',
|
||||
'TND': '788',
|
||||
'GBP': '826',
|
||||
'USD': '840',
|
||||
'TWD': '901',
|
||||
'RSD': '941',
|
||||
'RON': '946',
|
||||
'TRY': '949',
|
||||
'XOF': '952',
|
||||
'XPF': '953',
|
||||
'BGN': '975',
|
||||
'EUR': '978',
|
||||
'UAH': '980',
|
||||
'PLN': '985',
|
||||
'BRL': '986',
|
||||
}
|
110
i18n/account_qr_code_emv.pot
Normal file
110
i18n/account_qr_code_emv.pot
Normal file
@ -0,0 +1,110 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
116
i18n/ar.po
Normal file
116
i18n/ar.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "الحسابات البنكية"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "رمز الدولة"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "عرض إعدادات QR "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "رمز QR لـ EMV المقدم بواسطة التاجر "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "تهيئة رمز QR لـ EMV "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "تضمين المرجع "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "تضمين المرجع في رمز QR. "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "معلومات حساب التاجر غير موجودة. "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "مدينة التاجر غير موجودة. "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "نوع الوكيل مفقود. "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "قيمة الوكيل مفقودة. "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "لا شيء"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "نوع الوكيل "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "قيمة الوكيل "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"كود الدولة حسب المعيار الدولي أيزو المكون من حرفين.\n"
|
||||
"يمكنك استخدام هذا الحقل لإجراء بحث سريع."
|
119
i18n/bg.po
Normal file
119
i18n/bg.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 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: aleksandar ivanov, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банкови Сметки"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Код на държава"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Никакъв"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"Можете да използвате това поле за бързо търсене."
|
116
i18n/ca.po
Normal file
116
i18n/ca.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Comptes bancaris"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Codi de país"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Cap"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"EL codi ISO del país de dos caràcters.\n"
|
||||
"Podeu utilitzar aquest camp per la cerca ràpida."
|
119
i18n/cs.po
Normal file
119
i18n/cs.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Jakub Smolka, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
# Tomáš Píšek, 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: Tomáš Píšek, 2023\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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankovní účty"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Kód země"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Nastavení zobrazení QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV obchodník - prezentovaný QR kód"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR nastavení"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Zahrnout referenci"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Zahrne referenci v rámci QR kódu."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Chybějí informace o účtu obchodníka."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Chybí město obchodníka."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Chybí typ proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Chybí proxy hodnota."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Žádné"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Typ proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Hodnota proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO kód země ve dvou znacích. Toto pole můžete použít pro rychlé "
|
||||
"vyhledávání."
|
116
i18n/da.po
Normal file
116
i18n/da.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonti"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Lande kode"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Ingen"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO-landekoden med to tegn. \n"
|
||||
"Dette felt kan bruges til hurtig søgning."
|
116
i18n/de.po
Normal file
116
i18n/de.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonten"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Ländercode"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "QR-Einstellung anzeigen"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Vom Händler vorgezeigter QR-Code bei EMV-Zahlungen"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV-QR-Konfiguration"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Referenz einbinden"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Binden Sie die Referenz in den QR-Code ein."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Kontoinformationen des Händlers fehlen."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Händlerstadt fehlt."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Fehlender Proxy-Typ."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Fehlender Proxy-Wert."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Keine"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Proxy-Typ"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Proxy-Wert"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO-Ländercode in zwei Zeichen. \n"
|
||||
"Sie können dieses Feld auch für eine Schnellsuche einsetzen."
|
117
i18n/es.po
Normal file
117
i18n/es.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 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: Larissa Manderfeld, 2023\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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Cuentas bancarias"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Código de país"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Mostrar ajustes QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Código QR EMV del comerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Configuración QR EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Incluir la referencia"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Incluya la referencia en el código QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Falta la información de la cuenta del comerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Falta la ciudad del comerciante."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Falta el tipo de proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Falta el valor de proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Ninguno"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Tipo de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Valor de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"EL código ISO del país en dos caracteres.\n"
|
||||
"Puedes utilizar este campo para una búsqueda rápida."
|
116
i18n/es_419.po
Normal file
116
i18n/es_419.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Cuentas bancarias"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Código de país"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Mostrar ajustes QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Código QR EMV del comerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Configuración QR EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Incluir la referencia"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Incluir la referencia en el código QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Falta la información de la cuenta del comerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Falta la ciudad del comerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Falta el tipo de proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Falta el valor de proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Ninguno"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Tipo de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Valor de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"El código ISO del país en dos caracteres.\n"
|
||||
"Puede utilizar este campo para una búsqueda rápida."
|
120
i18n/et.po
Normal file
120
i18n/et.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2023
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Anna, 2023
|
||||
# Kärt Villako, 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: Kärt Villako, 2024\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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Pangakontod"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Riigikood"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Kuva Qr seadistus"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV Kaupmehe esitatud QR-kood"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR Konfiguratsioon"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Lisa viide"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Lisage viide QR-koodi."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Puuduvad kaupmehe konto andmed."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Puudub kaupmehe linn."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Puudub puhverserveri tüüp."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Puudub puhverserveri väärtus."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Pole"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Proxy tüüp"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Proxy Väärtus"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO riigi kood kahe tähega. \n"
|
||||
"Saad kasutada seda välja kiirotsinguks."
|
117
i18n/fa.po
Normal file
117
i18n/fa.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Hanna Kheradroosta, 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: Hanna Kheradroosta, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "حسابهای بانکی"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "کد کشور"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "هیچکدام"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"کد کشور ISO در دو کاراکتر.\n"
|
||||
"می توانید از این قسمت برای جستجوی سریع استفاده کنید."
|
119
i18n/fi.po
Normal file
119
i18n/fi.po
Normal file
@ -0,0 +1,119 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2023
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Pankkitilit"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Maatunnus"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Näytä QR-asetukset"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV Merchant-Presented QR-koodi"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR-asetukset"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Sisällytä viite"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Sisällytä viite QR-koodiin."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Puuttuvat kauppiastilin tiedot."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Puuttuva kauppiaan kaupunki."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Proxy-tyyppi puuttuu."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Proxy-arvo puuttuu."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Ei mitään"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Välityspalvelimen tyyppi"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Välityspalvelimen arvo"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Kaksikirjaiminen ISO-maaatunnus. \n"
|
||||
"Voit hakea tämän kentän avulla nopeasti."
|
116
i18n/fr.po
Normal file
116
i18n/fr.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Comptes bancaires"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Code de pays"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Paramètre affichage QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Code QR EMV présenté par le commerçant"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Configuration QR EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Inclure la référence"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Inclure la référence dans le code QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Informations manquantes sur le compte du commerçant"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Ville du commerçant manquante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Type de proxy manquant."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Valeur de proxy manquante."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Aucun"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Type de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Valeur de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Le code de pays ISO en deux caractères.\n"
|
||||
"Vous pouvez utiliser ce champ pour une recherche rapide."
|
118
i18n/he.po
Normal file
118
i18n/he.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "חשבונות בנק"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "קוד ארץ"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "אף אחד"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"קוד ארץ ISO בשני תווים. \n"
|
||||
"ניתן להשתמש בשדה זה לחיפוש מהיר."
|
118
i18n/hu.po
Normal file
118
i18n/hu.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# krnkris, 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: krnkris, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankszámlák"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Országkód"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Nincs"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Kétbetűs ISO országkód.\n"
|
||||
"Ezt a mezőt a gyors kereséshez használhatja."
|
116
i18n/id.po
Normal file
116
i18n/id.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Rekening Bank"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Kode Negara"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Tampilkan Pengaturan QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV Merchant-Presented QR-code"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Konfigurasi EMV QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Termasuk Referensi"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Termasuk referensi di kode QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Informasi Akun Merchant Kurang."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Kurang Kota Merchant."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Kurang Tipe Proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Kurang Value Proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Tidak Ada"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Tipe Proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Value Proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Kode ISO negara dalam dua karakter.\n"
|
||||
"Anda dapat menggunakan kolom ini untuk pencarian cepat."
|
116
i18n/it.po
Normal file
116
i18n/it.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Conti bancari"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Codice nazione"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Visualizza impostazioni QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Codice QR EMV presentato dal commerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Configurazione QR EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Includi riferimento"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Includi il riferimento nel codice QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Informazioni conto commerciante mancanti."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Città del commerciante mancante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Tipo di proxy mancante."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Valore proxy mancante."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Nessuna"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Tipo di proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Valore proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Codice ISO a due caratteri della nazione. \n"
|
||||
"È possibile usare questo campo per una ricerca rapida."
|
116
i18n/ja.po
Normal file
116
i18n/ja.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "銀行口座"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "国コード"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "QR設定を表示 "
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMVマーチャント提示QRコード"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR設定"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "参照を含む"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "QRコードに参照を含む"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "マーチャントアカウント情報がありません。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "マーチャントの都市がありません。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "プロキシタイプがありません。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "プロキシ値がありません。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "なし"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "プロキシタイプ"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "プロキシ値"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISOの国別コードは2文字です。\n"
|
||||
"これを使ってクイックサーチできます。"
|
116
i18n/ko.po
Normal file
116
i18n/ko.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "은행 계좌"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "국가 코드"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "QR 세팅 표시"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV 가맹점 제공 QR 코드"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR 설정"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "참조 포함"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "QR 코드에 참조를 포함합니다."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "판매자 계정 정보가 누락되었습니다."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "판매자 지역 도시 정보가 누락되었습니다."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "프록시 유형이 없습니다."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "프록시 값이 없습니다."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "없음"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "프록시 유형"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "프록시 값"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"두 개의 문자로 된 ISO 국가 코드.\n"
|
||||
"이 필드는 빠른 검색을 위해 사용할 수 있습니다."
|
117
i18n/lt.po
Normal file
117
i18n/lt.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: digitouch UAB <digitouchagencyeur@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Banko sąskaitos"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Valstybės kodas"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Nieko"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO šalies kodas dviem simboliais. \n"
|
||||
"Galite naudoti šį lauką greitai paieškai."
|
118
i18n/lv.po
Normal file
118
i18n/lv.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2023
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 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: Arnis Putniņš <arnis@allegro.lv>, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankas konti"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Valsts Kods"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Nav"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
117
i18n/nl.po
Normal file
117
i18n/nl.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 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: Erwin van der Ploeg <erwin@odooexperts.nl>, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankrekeningen"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Landcode"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "QR-instelling weergeven"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Aan EMV handelaren te presenteren QR-code"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR configuratie"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Inclusief referentie"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Referentie opnemen in de QR code."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Ontbrekende rekeninginformatie handelaar"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Ontbrekende stad handelaar."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Type proxy ontbreekt."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Waarde proxy ontbreekt."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Geen"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Type proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Waarde proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"De ISO-landcode in twee letters.\n"
|
||||
"Je kunt dit veld gebruiken voor snelzoeken."
|
116
i18n/pl.po
Normal file
116
i18n/pl.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Konta bankowe"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Kod kraju"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Brak"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Kod kraju ISO w dwóch znakach. \n"
|
||||
"Możesz użyć tego pola do szybkiego wyszukiwania."
|
116
i18n/pt.po
Normal file
116
i18n/pt.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Contas Bancárias"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Código do País"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Nenhum(a)"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"O código ISO do país em dois caracteres.\n"
|
||||
"Pode utilizar este campo para procura rápida."
|
116
i18n/pt_BR.po
Normal file
116
i18n/pt_BR.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Contas bancárias"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Código do país"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Exibir configuração do QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "QR code de EMV apresentado pelo comerciante"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Configuração de QR EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Incluir referência"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Inclua a referência no código QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Há informações ausentes na conta do comerciante."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Cidade do comerciante ausente."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Tipo de proxy ausente."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Valor de proxy ausente."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Nenhum"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Tipo de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Valor de proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"O código ISO do país de dois caracteres. \n"
|
||||
"Use este campo para fazer uma busca."
|
117
i18n/ru.po
Normal file
117
i18n/ru.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банковские Счета"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Код страны"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Настройка дисплея Qr"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV QR-код, представляемый продавцом"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Конфигурация EMV QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Включить ссылку"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Включите ссылку в QR-код."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Отсутствие информации о торговом счете."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Пропавший Купеческий город."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Отсутствует Тип прокси."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Отсутствующее значение прокси."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Нет"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Тип прокси"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Значение прокси"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Код страны ISO в двух символах.\n"
|
||||
"Вы можете использовать это поле для быстрого поиска."
|
116
i18n/sk.po
Normal file
116
i18n/sk.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankové účty"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Kód štátu"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Žiadne"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO kód krajiny v dvoch znakoch.\n"
|
||||
"Môžete použiť toto pole pre rýchle vyhľadanie."
|
118
i18n/sl.po
Normal file
118
i18n/sl.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:55+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Matjaz Mozetic <m.mozetic@matmoz.si>, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bančni računi"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Koda države"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Brez"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO koda države v dveh znakih. \n"
|
||||
"To polje lahko uporabiš za hitro iskanje."
|
118
i18n/sr.po
Normal file
118
i18n/sr.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# Martin Trigaux, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankovni računi"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Šifra države"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Prikaz postavki QR koda"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV Trgovac-Predstavljen QR-kod"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR Konfiguracija"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Uključi referencu"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Uključite referencu u QR kod."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Nedostaju informacije o trgovinskom računu."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Nedostaje trgovački grad."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Nedostaje vrsta proxy-ja."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Nedostaje vrednost proksija."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Ništa"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Tip proxya"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Proxy Vrednost"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO kod zemlje u dve karaktera.\n"
|
||||
" Možete koristiti ovo polje za brzu pretragu."
|
118
i18n/sv.po
Normal file
118
i18n/sv.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Martin Wilderoth <martin.wilderoth@linserv.se>, 2023
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Bankkonton"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Landskod"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Inga"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO-landskoden med två tecken\n"
|
||||
"Du kan använda det här fältet för snabb sökning."
|
116
i18n/th.po
Normal file
116
i18n/th.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "บัญชีธนาคาร"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "รหัสประเทศ"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "แสดงการตั้งค่า Qr"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "รหัส QR ที่นำเสนอโดยผู้ค้า EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "การกำหนดค่า EMV QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "รวมการอ้างอิง"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "รวมข้อมูลอ้างอิงในโค้ด QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "ข้อมูลบัญชีของผู้ค้าขาดหายไป"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "เมืองของผู้ค้าขาดหายไป"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "ไม่มีประเภทพร็อกซี"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "ไม่มีค่าพร็อกซี"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "ไม่มี"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "ประเภทพร็อกซี"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "ค่าพร็อกซี"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"โค้ดประเทศ ISO ในสองตัวอักษร\n"
|
||||
"คุณสามารถใช้ช่องนี้เพื่อการค้นหาอย่างรวดเร็ว"
|
118
i18n/tr.po
Normal file
118
i18n/tr.po
Normal file
@ -0,0 +1,118 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Banka Hesapları"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Ülke Kodu"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Hiçbiri"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"İki karakterde ISO ülke kodu.\n"
|
||||
"Hızlı arama için bu alanı kullanabilirsiniz."
|
117
i18n/uk.po
Normal file
117
i18n/uk.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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: Alina Lisnenko <alina.lisnenko@erp.co.ua>, 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Банківські рахунки"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Код країни"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Відобразити налаштування Qr"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV Merchant-Presented QR-код"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Налаштування EMV QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Включно з референсом"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Включно з референсом в QR-коді."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Відсутня інформація Merchant Account."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Відсутнє місто Merchant."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Відсутній тип проксі."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Відсутнє значення проксі."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Немає"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Тип проксі"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Значення проксі"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Код країни ISO у двох символах.\n"
|
||||
"Ви можете використовувати це поле для швидкого пошуку."
|
116
i18n/vi.po
Normal file
116
i18n/vi.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "Tài khoản Ngân hàng"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "Mã quốc gia"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "Hiện thị cài đặt QR"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "Mã QR của người bán EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "Cấu hình QR EMV"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "Bao gồm tham chiếu"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "Bao gồm tham chiếu trong mã QR."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "Thiếu thông tin tài khoản người bán"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "Thiếu thành phố của người bán."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "Thiếu loại proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "Thiếu giá trị proxy."
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "Không"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "Loại proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "Giá trị proxy"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"Mã quốc gia ISO với hai ký tự.\n"
|
||||
"Bạn có thể sử dụng trường này để tìm kiếm nhanh."
|
116
i18n/zh_CN.po
Normal file
116
i18n/zh_CN.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "银行账户"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "国家/地区代码"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "显示 QR 设定"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV 商户出示二维码"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR 配置"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "包括参考编号"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "在二维码中包括参考资料。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "未有商户账户资料。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "未有商户所在城市资料。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "未有代理类型。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "未有代理值。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "无"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "代理类型"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "代理值"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO国家/地区代码包含两个字符。\n"
|
||||
"可以使用该字段进行快速搜索。"
|
116
i18n/zh_TW.po
Normal file
116
i18n/zh_TW.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_qr_code_emv
|
||||
#
|
||||
# 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: 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: account_qr_code_emv
|
||||
#: model:ir.model,name:account_qr_code_emv.model_res_partner_bank
|
||||
msgid "Bank Accounts"
|
||||
msgstr "銀行帳戶"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid "Country Code"
|
||||
msgstr "國家/地區代碼"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__display_qr_setting
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__display_qr_setting
|
||||
msgid "Display Qr Setting"
|
||||
msgstr "顯示 QR 設定"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "EMV Merchant-Presented QR-code"
|
||||
msgstr "EMV 商戶出示二維碼"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model_terms:ir.ui.view,arch_db:account_qr_code_emv.view_partner_bank_form_inherit_account
|
||||
msgid "EMV QR Configuration"
|
||||
msgstr "EMV QR 配置"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include Reference"
|
||||
msgstr "包括參考編號"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__include_reference
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__include_reference
|
||||
msgid "Include the reference in the QR code."
|
||||
msgstr "在二維碼中包括參考資料。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant Account Information."
|
||||
msgstr "未有商戶賬戶資料。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Merchant City."
|
||||
msgstr "未有商戶所在城市資料。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Type."
|
||||
msgstr "未有代理類型。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#. odoo-python
|
||||
#: code:addons/account_qr_code_emv/models/res_bank.py:0
|
||||
#, python-format
|
||||
msgid "Missing Proxy Value."
|
||||
msgstr "未有代理值。"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields.selection,name:account_qr_code_emv.selection__res_partner_bank__proxy_type__none
|
||||
msgid "None"
|
||||
msgstr "無"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_type
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_type
|
||||
msgid "Proxy Type"
|
||||
msgstr "代理類型"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_account_setup_bank_manual_config__proxy_value
|
||||
#: model:ir.model.fields,field_description:account_qr_code_emv.field_res_partner_bank__proxy_value
|
||||
msgid "Proxy Value"
|
||||
msgstr "代理值"
|
||||
|
||||
#. module: account_qr_code_emv
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_account_setup_bank_manual_config__country_code
|
||||
#: model:ir.model.fields,help:account_qr_code_emv.field_res_partner_bank__country_code
|
||||
msgid ""
|
||||
"The ISO country code in two chars. \n"
|
||||
"You can use this field for quick search."
|
||||
msgstr ""
|
||||
"ISO 國家代碼使用兩個字元。\n"
|
||||
" 您可以使用此欄位進行快速搜尋。"
|
3
models/__init__.py
Normal file
3
models/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import res_bank
|
113
models/res_bank.py
Normal file
113
models/res_bank.py
Normal file
@ -0,0 +1,113 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import re
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.tools.misc import remove_accents
|
||||
|
||||
from odoo.addons.account_qr_code_emv.const import CURRENCY_MAPPING
|
||||
|
||||
|
||||
class ResPartnerBank(models.Model):
|
||||
_inherit = 'res.partner.bank'
|
||||
|
||||
country_code = fields.Char(related='partner_id.country_code', string="Country Code")
|
||||
display_qr_setting = fields.Boolean(compute='_compute_display_qr_setting')
|
||||
include_reference = fields.Boolean(string="Include Reference", help="Include the reference in the QR code.")
|
||||
proxy_type = fields.Selection([('none', 'None')], string="Proxy Type", default='none')
|
||||
proxy_value = fields.Char(string="Proxy Value")
|
||||
|
||||
@api.model
|
||||
def _serialize(self, header, value):
|
||||
if value is not None and value != '':
|
||||
return f'{header:02}{len(str(value)):02}{value}'
|
||||
else:
|
||||
return ''
|
||||
|
||||
@api.model
|
||||
def _remove_accents(self, string):
|
||||
return remove_accents(string).replace('đ', 'd').replace('Đ', 'D')
|
||||
|
||||
@api.depends('country_code')
|
||||
def _compute_display_qr_setting(self):
|
||||
self.display_qr_setting = False
|
||||
|
||||
# CRC16 calculation with polynomial 0x1021 and initial value 0xFFFF
|
||||
def _get_crc16(self, data, poly=0x1021, init=0xFFFF):
|
||||
crc = init
|
||||
for byte in data:
|
||||
crc = crc ^ (byte << 8)
|
||||
for __ in range(8):
|
||||
if crc & 0x8000:
|
||||
crc = (crc << 1) ^ poly
|
||||
else:
|
||||
crc = crc << 1
|
||||
return crc & 0xFFFF
|
||||
|
||||
def _get_merchant_account_info(self):
|
||||
return None, None
|
||||
|
||||
def _get_additional_data_field(self, comment):
|
||||
return None
|
||||
|
||||
def _get_qr_code_vals_list(self, qr_method, amount, currency, debtor_partner, free_communication, structured_communication):
|
||||
tag, merchant_account_info = self._get_merchant_account_info()
|
||||
currency_code = CURRENCY_MAPPING[currency.name]
|
||||
amount = amount.is_integer() and int(amount) or amount
|
||||
merchant_name = self.partner_id.name and self._remove_accents(self.partner_id.name)[:25] or 'NA'
|
||||
merchant_city = self.partner_id.city and self._remove_accents(self.partner_id.city)[:15] or ''
|
||||
comment = structured_communication or free_communication or ''
|
||||
comment = re.sub(r'/[^ A-Za-z0-9_@.\/#&+-]+/g', '', remove_accents(comment))
|
||||
additional_data_field = self._get_additional_data_field(comment) if self.include_reference else None
|
||||
return [
|
||||
(0, '01'), # Payload Format Indicator
|
||||
(1, '12'), # Dynamic QR Codes
|
||||
(tag, merchant_account_info), # Merchant Account Information
|
||||
(52, '0000'), # Merchant Category Code
|
||||
(53, currency_code), # Transaction Currency
|
||||
(54, amount), # Transaction Amount
|
||||
(58, self.country_code), # Country Code
|
||||
(59, merchant_name), # Merchant Name
|
||||
(60, merchant_city), # Merchant City
|
||||
(62, additional_data_field), # Additional Data Field
|
||||
]
|
||||
|
||||
def _get_qr_vals(self, qr_method, amount, currency, debtor_partner, free_communication, structured_communication):
|
||||
if qr_method == 'emv_qr':
|
||||
qr_code_vals = self._get_qr_code_vals_list(qr_method, amount, currency, debtor_partner, free_communication, structured_communication)
|
||||
qr_code_str = ''.join([self._serialize(*val) for val in qr_code_vals])
|
||||
qr_code_str += '6304' # CRC16
|
||||
crc = self._get_crc16(bytes(qr_code_str, 'utf-8'))
|
||||
qr_code_str += format(crc, '04x').upper()
|
||||
return qr_code_str
|
||||
|
||||
return super()._get_qr_vals(qr_method, amount, currency, debtor_partner, free_communication, structured_communication)
|
||||
|
||||
def _get_qr_code_generation_params(self, qr_method, amount, currency, debtor_partner, free_communication, structured_communication):
|
||||
if qr_method == 'emv_qr':
|
||||
return {
|
||||
'barcode_type': 'QR',
|
||||
'width': 128,
|
||||
'height': 128,
|
||||
'humanreadable': 1,
|
||||
'value': self._get_qr_vals(qr_method, amount, currency, debtor_partner, free_communication, structured_communication),
|
||||
}
|
||||
return super()._get_qr_code_generation_params(qr_method, amount, currency, debtor_partner, free_communication, structured_communication)
|
||||
|
||||
def _check_for_qr_code_errors(self, qr_method, amount, currency, debtor_partner, free_communication, structured_communication):
|
||||
if qr_method == 'emv_qr':
|
||||
if not self._get_merchant_account_info():
|
||||
return _("Missing Merchant Account Information.")
|
||||
if not self.partner_id.city:
|
||||
return _("Missing Merchant City.")
|
||||
if not self.proxy_type:
|
||||
return _("Missing Proxy Type.")
|
||||
if not self.proxy_value:
|
||||
return _("Missing Proxy Value.")
|
||||
return super()._check_for_qr_code_errors(qr_method, amount, currency, debtor_partner, free_communication, structured_communication)
|
||||
|
||||
@api.model
|
||||
def _get_available_qr_methods(self):
|
||||
rslt = super()._get_available_qr_methods()
|
||||
rslt.append(('emv_qr', _("EMV Merchant-Presented QR-code"), 30))
|
||||
return rslt
|
21
views/res_bank_views.xml
Normal file
21
views/res_bank_views.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="view_partner_bank_form_inherit_account" model="ir.ui.view">
|
||||
<field name="name">res.partner.bank.form.inherit</field>
|
||||
<field name="model">res.partner.bank</field>
|
||||
<field name="inherit_id" ref="base.view_partner_bank_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<sheet position="inside">
|
||||
<field name="display_qr_setting" invisible="1" />
|
||||
<group string="EMV QR Configuration" invisible="not display_qr_setting">
|
||||
<field name="country_code" invisible="1" />
|
||||
<field name="proxy_type"/>
|
||||
<field name="proxy_value"/>
|
||||
<field name="include_reference"/>
|
||||
</group>
|
||||
</sheet>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user