diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/README.md b/odoo-bringout-oca-ocb-payment_custom/payment_custom/README.md new file mode 100644 index 00000000..f8ba2b3a --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/README.md @@ -0,0 +1,29 @@ +# Custom Payment Modes + +## Technical details + +This module does not integrate with an API and, instead, offers a base for implementing payment +providers with custom payment flows relying on payment instructions being displayed to the customer. +This is done by immediately marking transactions as 'pending' to display their 'pending message'. + +It defines a base Wire Transfer payment provider that allows making payments by bank transfer. + +## Supported features + +- Direct payment flow + +## Module history + +- `16.1` + - The default payment instructions message of Wire Transfer can be recomputed at any time after + installation of the module. odoo/odoo#103903 +- `16.0` + - The `custom_mode` field is added to distinguish custom payment modes from other payment + providers and to allow duplicating the base Wire Transfer provider in multi-company databases. + odoo/odoo#99400 + - The module is no longer automatically installed with the `payment` module. odoo/odoo#99400 + - The module is renamed from `payment_transfer` to `payment_custom`. odoo/odoo#99400 + +## Testing instructions + +Wire Transfer can be tested indifferently in test or live mode as it does not make API requests. diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/__init__.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/__init__.py new file mode 100644 index 00000000..e0352b05 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/__init__.py @@ -0,0 +1,14 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models + +from odoo.addons.payment import setup_provider, reset_payment_provider + + +def post_init_hook(env): + setup_provider(env, 'custom', custom_mode='wire_transfer') + + +def uninstall_hook(env): + reset_payment_provider(env, 'custom', custom_mode='wire_transfer') diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/__manifest__.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/__manifest__.py new file mode 100644 index 00000000..b8df2be3 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/__manifest__.py @@ -0,0 +1,27 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Payment Provider: Custom Payment Modes', + 'version': '2.0', + 'category': 'Accounting/Payment Providers', + 'sequence': 350, + 'summary': "A payment provider for custom flows like wire transfers.", + 'description': " ", # Non-empty string to avoid loading the README file. + 'depends': ['payment'], + 'data': [ + 'views/payment_custom_templates.xml', + 'views/payment_provider_views.xml', + + 'data/payment_method_data.xml', + 'data/payment_provider_data.xml', # Depends on `payment_method_wire_transfer`. + ], + 'assets': { + 'web.assets_frontend': [ + 'payment_custom/static/src/interactions/post_processing.js', + ], + }, + 'post_init_hook': 'post_init_hook', + 'uninstall_hook': 'uninstall_hook', + 'author': 'Odoo S.A.', + 'license': 'LGPL-3', +} diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/const.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/const.py new file mode 100644 index 00000000..c467d382 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/const.py @@ -0,0 +1,6 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# The codes of the payment methods to activate when Wire Transfer is activated. +DEFAULT_PAYMENT_METHOD_CODES = { + 'wire_transfer', +} diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/controllers/__init__.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/controllers/__init__.py new file mode 100644 index 00000000..80ee4da1 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/controllers/__init__.py @@ -0,0 +1,3 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/controllers/main.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/controllers/main.py new file mode 100644 index 00000000..451f3856 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/controllers/main.py @@ -0,0 +1,20 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import pprint + +from odoo.http import Controller, request, route + +from odoo.addons.payment.logging import get_payment_logger + + +_logger = get_payment_logger(__name__) + + +class CustomController(Controller): + _process_url = '/payment/custom/process' + + @route(_process_url, type='http', auth='public', methods=['POST'], csrf=False) + def custom_process_transaction(self, **post): + _logger.info("Handling custom processing with data:\n%s", pprint.pformat(post)) + request.env['payment.transaction'].sudo()._process('custom', post) + return request.redirect('/payment/status') diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/data/payment_method_data.xml b/odoo-bringout-oca-ocb-payment_custom/payment_custom/data/payment_method_data.xml new file mode 100644 index 00000000..06e72c7b --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/data/payment_method_data.xml @@ -0,0 +1,16 @@ + + + + + Wire Transfer + wire_transfer + 1000 + False + + False + False + none + none + + + diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/data/payment_provider_data.xml b/odoo-bringout-oca-ocb-payment_custom/payment_custom/data/payment_provider_data.xml new file mode 100644 index 00000000..7709dc2c --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/data/payment_provider_data.xml @@ -0,0 +1,21 @@ + + + + + custom + + + + wire_transfer + + + + + + diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/af.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/af.po new file mode 100644 index 00000000..561eba45 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/af.po @@ -0,0 +1,39 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-11-12 09:36+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-9/language/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: model_terms:payment.acquirer,cancel_msg:payment_transfer.payment_acquirer_transfer +msgid "Cancel, Your payment has been cancelled." +msgstr "Kanselleer, Jou betaling is gekanselleer." + +#. module: payment_transfer +#: model_terms:payment.acquirer,done_msg:payment_transfer.payment_acquirer_transfer +msgid "Done, Your online payment has been successfully processed. Thank you for your order." +msgstr "Klaar, Your online payment has been successfully processed. Thank you for your order." + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Bankrekening" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Bankrekeninge" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ar.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ar.po new file mode 100644 index 00000000..fcdff983 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ar.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Mustafa Rawi , 2019 +# Mustafa J. Kadhem , 2019 +# Osama Ahmaro , 2019 +# Yihya Hugirat , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 13:40+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Arabic \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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 ? 4 : 5;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"قم بمسحي في تطبيقك " +"البنكي" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "التواصل: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "الحساب البنكي" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "الحسابات البنكية" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "رمز" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "مُخصص" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "الوضع المخصص" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "تمكين كود QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "تمكين استخدام أكواد QR عند الدفع عن طريق التحويل البنكي." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "قم بإكمال عملية الدفع" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "أو" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "فقط مزودو الدفع المخصصون يجب أن يكون لهم وضع مخصص." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "مزود الدفع" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "يرجى استخدام تفاصيل التحويل التالية" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "إعادة تحميل الرسالة المعلقة" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "لقد اختار العميل %(provider_name)s لإجراء الدفع." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "الكود التقني لمزود الدفع هذا." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "تحويل بنكي" + +#~ msgid "; multiple order found" +#~ msgstr "؛ تم العثور على طلبات متعددة" + +#~ msgid "; no order found" +#~ msgstr "; لم يُعثر على طلبات" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

يرجى استخدام تفاصيل التحويل التالية

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

تواصل

\n" +#~ "

الرجاء استخدام اسم الطلب كمرجع للتواصل

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "معالج السداد" + +#~ msgid "Provider" +#~ msgstr "المزود" + +#~ msgid "received data for reference %s" +#~ msgstr "استلام البيانات للمرجع %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/az.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/az.po new file mode 100644 index 00000000..90aea86d --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/az.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/bg.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/bg.po new file mode 100644 index 00000000..1d06e8e1 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/bg.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Iliana Ilieva , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2015-11-26 13:28+0000\n" +"Last-Translator: Iliana Ilieva \n" +"Language-Team: Bulgarian (http://www.transifex.com/odoo/odoo-9/language/" +"bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Банкова сметка" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Банкови сметки" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Плащане" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Банков превод" + +#~ msgid "; no order found" +#~ msgstr "Не е открита заявка" + +#~ msgid "Cancel, Your payment has been cancelled." +#~ msgstr "Отказ, Вашето плащане е отказано." + +#~ msgid "" +#~ "Done, Your online payment has been successfully processed. " +#~ "Thank you for your order." +#~ msgstr "" +#~ "Готово, Вашето онлайн плащане е успешно. Благодарим Ви, за " +#~ "поръчката!." + +#~ msgid "" +#~ "Error, Please be aware that an error occurred during the " +#~ "transaction. The order has been confirmed but won't be paid. Don't " +#~ "hesitate to contact us if you have any questions on the status of your " +#~ "order." +#~ msgstr "" +#~ "Грешка, Моля, имайте предвид, че възникна грешка по време на " +#~ "транзакцията. Поръчката е потвърдена, но не е платена. Не се колебайте да " +#~ "се свържете с нас ако имате въпроси относно статуса на Вашата поръчка." + +#~ msgid "" +#~ "Pending, Your online payment has been successfully " +#~ "processed. But your order is not validated yet." +#~ msgstr "" +#~ "Задържано, Вашето онлайн плащане е успешно, но поръчката Ви " +#~ "още не е потвърдена." + +#~ msgid "Payment Acquirer" +#~ msgstr "Обработчик на плащането" + +#~ msgid "" +#~ "Transfer information will be provided after choosing the payment mode." +#~ msgstr "" +#~ "Информация за транзакцита ще бъде предоставена след избор на метод на " +#~ "плащане." diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/bs.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/bs.po new file mode 100644 index 00000000..177b1636 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/bs.po @@ -0,0 +1,60 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Account" +msgstr "Račun banke" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Accounts" +msgstr "Računi banke" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Ručna konfiguracija" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_transfer +#: model:ir.model.fields,field_description:payment_transfer.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Slipovi" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Žičani prenos" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ca.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ca.po new file mode 100644 index 00000000..7c43f93d --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ca.po @@ -0,0 +1,198 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Lluís Dalmau , 2018 +# RGB Consulting , 2018 +# Joan Ignasi Florit , 2018 +# Quim - eccit , 2018 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 02:32+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Catalan \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Escaneja aquest codi en la teva " +"aplicació bancària" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Comunicació: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Compte bancari" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Comptes bancaris" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Codi" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Personalitzat" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Mode personalitzat" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Habilitar els codis QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Habilitar l'ús de codis QR al pagar per transferència bancària." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Finalitzar el pagament" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "OR" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Proveïdor de pagament" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Utilitzeu els detalls de transferència següents" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "El codi tècnic d'aquest proveïdor de pagaments." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Transferència bancaria" + +#~ msgid "; multiple order found" +#~ msgstr "; diverses comandes trobades" + +#~ msgid "; no order found" +#~ msgstr "; ordre no trobada" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "

Utilitzeu les següents dades

%(bank_title)s

%" +#~ "(bank_accounts)s

Comunicació

Utilitzeu el nom de l'ordre com " +#~ "a referència comunicada.

\n" +#~ "
" + +#~ msgid "Adyen" +#~ msgstr "Adyen" + +#~ msgid "Authorize.Net" +#~ msgstr "Authorize.Net" + +#~ msgid "Buckaroo" +#~ msgstr "Buckaroo" + +#~ msgid "Manual Configuration" +#~ msgstr "Configuració manual" + +#~ msgid "Ogone" +#~ msgstr "Ogone" + +#~ msgid "PayUmoney" +#~ msgstr "PayUmoney" + +#~ msgid "Payment Acquirer" +#~ msgstr "Pagament de compradors" + +#~ msgid "Paypal" +#~ msgstr "Paypal" + +#~ msgid "Provider" +#~ msgstr "Proveïdor" + +#~ msgid "Sips" +#~ msgstr "Sips" + +#~ msgid "Stripe" +#~ msgstr "Stripe" + +#~ msgid "received data for reference %s" +#~ msgstr "rebudes dades per referència %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/cs.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/cs.po new file mode 100644 index 00000000..35a55543 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/cs.po @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Michal Veselý , 2019 +# trendspotter , 2019 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 10:05+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Czech \n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Naskenujte mě ve své bankovní " +"aplikaci" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Komunikace: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankovní účet" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankovní účty" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Vlastní" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Vlastní režim" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovací název" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Povolit QR kódy" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Povolte použití QR kódů při platbě bankovním převodem" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Dokončete platbu" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "NEBO" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Vlastní režim by měli mít pouze vlastní poskytovatele." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Poskytovatel platby" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Použijte prosím následující údaje o převodu" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Znowu načíst čekající zprávu" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Zákazník zvolil %(provider_name)s pro provedení platby." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Technický kód tohoto poskytovatele plateb." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "bankovní převod" + +#~ msgid "; multiple order found" +#~ msgstr "; nalezena vícenásobná objednávka" + +#~ msgid "; no order found" +#~ msgstr "; nebyla nalezena žádná objednávka" + +#~ msgid "Payment Acquirer" +#~ msgstr "Platební brána" + +#~ msgid "Provider" +#~ msgstr "Poskytovatel" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/da.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/da.po new file mode 100644 index 00000000..022182cc --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/da.po @@ -0,0 +1,171 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Pernille Kristensen , 2019 +# Sanne Kristensen , 2019 +# "Dylan Kiss (dyki)" , 2025. +# "Kira Petersen François (peti)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-25 13:24+0000\n" +"Last-Translator: \"Kira Petersen François (peti)\" \n" +"Language-Team: Danish \n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankkonti" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Tilpasset" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Brugerdefineret tilstand" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Aktiver QR Koder" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "ELLER" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Betalingsudbyder" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Anvend venligst de følgende overførselsoplysninger" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Bankoverførsel" + +#~ msgid "; multiple order found" +#~ msgstr "; flere ordre fundet" + +#~ msgid "; no order found" +#~ msgstr "; ingen ordre fundet" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Brug venligst følgende overførselsoplysninger

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Meddelelse

\n" +#~ "

Brug venligst ordrenavnet som reference.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Betalingsindløser" + +#~ msgid "Provider" +#~ msgstr "Udbyder" + +#~ msgid "received data for reference %s" +#~ msgstr "Modtaget data til reference %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/de.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/de.po new file mode 100644 index 00000000..d2c274cd --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/de.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 02:36+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: German \n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Scannen Sie mich in Ihrer " +"Banking-App" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Mitteilung: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankkonten" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Benutzerdefiniert" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Benutzerdefinierter Modus" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "QR-Codes aktivieren" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Aktivieren Sie die Verwendung von QR-Codes für Überweisungen." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Ihre Zahlung abschließen" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "ODER" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" +"Nur benutzerdefinierte Anbieter sollten einen benutzerdefinierten Modus " +"haben." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Zahlungsanbieter" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Bitte verwenden Sie folgende Transferinformationen." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Ausstehende Nachricht neu laden" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Der Kunden hat %(provider_name)s für die Zahlung ausgewählt." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Der technische Code dieses Zahlungsanbieters." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Banküberweisung" + +#~ msgid "; multiple order found" +#~ msgstr "; mehrfache Bestellung gefunden" + +#~ msgid "; no order found" +#~ msgstr "; keine Bestellung gefunden" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Verwenden Sie bitte die folgenden Überweisungsdaten

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Kommunikation

\n" +#~ "

Geben Sie bitte die Auftragsbezeichnung als Referenz an.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Zahlungsanbieter" + +#~ msgid "Provider" +#~ msgstr "Anbieter" + +#~ msgid "received data for reference %s" +#~ msgstr "empfangene Datem für Referenz %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/el.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/el.po new file mode 100644 index 00000000..a47c5ecb --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/el.po @@ -0,0 +1,197 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-24 19:22+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Greek \n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Τραπεζικός Λογαριασμός" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Τραπεζικοί Λογαριασμοί" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Κωδικός" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Προσωποποιημένο" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Προσαρμοσμένη Λειτουργία" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Πάροχος Πληρωμών" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Έμβασμα" + +#~ msgid "; multiple order found" +#~ msgstr ", βρέθηκαν πολλαπλές παραγγελίες" + +#~ msgid "; no order found" +#~ msgstr ", δεν βρέθηκε παραγγελία" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Παρακαλώ χρησιμοποιήστε τις παρακάτω λεπτομέρειες για το έμβασμα\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Επικοινωνία

\n" +#~ "

Χρησιμοποιήστε το όνομα της παραγγελίας ως αναφορά επικοινωνίας.

\n" +#~ "
" + +#~ msgid "Adyen" +#~ msgstr "Adyen" + +#~ msgid "Authorize.Net" +#~ msgstr "Authorize.Net" + +#~ msgid "Buckaroo" +#~ msgstr "Buckaroo" + +#~ msgid "Manual Configuration" +#~ msgstr "Μη αυτόματη διαμόρφωση" + +#~ msgid "Ogone" +#~ msgstr "Ogone" + +#~ msgid "PayUmoney" +#~ msgstr "PayUmoney" + +#~ msgid "Payment Acquirer" +#~ msgstr "Αποδέκτης Πληρωμής" + +#~ msgid "Paypal" +#~ msgstr "Paypal" + +#~ msgid "Provider" +#~ msgstr "Πάροχος" + +#~ msgid "Sips" +#~ msgstr "Sips" + +#~ msgid "Stripe" +#~ msgstr "Stripe" + +#~ msgid "received data for reference %s" +#~ msgstr "λήφθηκαν δεδομένα αναφοράς %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es.po new file mode 100644 index 00000000..41d75694 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es.po @@ -0,0 +1,175 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Jon Perez , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-17 17:28+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Spanish \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Escanee este código en su " +"aplicación bancaria" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Comunicación: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Cuenta bancaria" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Cuentas bancarias" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Personalizado" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Modo personalizado" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Habilitar códigos QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Habilite el uso de códigos QR al pagar por transferencia bancaria." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Finalizar su pago" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "O" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" +"Solo los proveedores personalizados deberían tener un modo personalizado." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Use los siguientes detalles de transferencia" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Volver a cargar el mensaje pendiente" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "El cliente ha seleccionado %(provider_name)s para pagar." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "El código técnico de este proveedor de pagos." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Transferencia bancaria" + +#~ msgid "; multiple order found" +#~ msgstr "; encontrado pedido múltiple" + +#~ msgid "; no order found" +#~ msgstr "; pedido no encontrado" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Por favor utilice los siguientes detalles para la transferencia

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Concepto

\n" +#~ "

Utilice por favor el nº de pedido como concepto.

\n" +#~ "
" + +#~ msgid "Manual Payment" +#~ msgstr "Pago manual" + +#~ msgid "Payment Acquirer" +#~ msgstr "Método de pago" + +#~ msgid "Provider" +#~ msgstr "Proveedor" + +#~ msgid "received data for reference %s" +#~ msgstr "Recibidos datos para la referencia %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es_419.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es_419.po new file mode 100644 index 00000000..bfa00b3c --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es_419.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-26 08:56+0000\n" +"PO-Revision-Date: 2025-09-17 06:33+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Spanish (Latin America) \n" +"Language: es_419\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking " +"app" +msgstr "" +"Escanee este código en su " +"aplicación bancaria" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Referencia: " + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Personalizado" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Modo personalizado" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Habilitar códigos QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Habilite el uso de códigos QR al pagar por transferencia bancaria." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Finalizar su pago" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "No transaction found matching reference %s." +msgstr "No se encontró ninguna transacción que coincida con la referencia %s." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "O" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" +"Solo los proveedores personalizados deberían tener un modo personalizado." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Volver a cargar el mensaje pendiente" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "El cliente eligió %(provider_name)s para pagar." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "El código técnico de este proveedor de pagos." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Transferencia bancaria" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es_CL.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es_CL.po new file mode 100644 index 00000000..118380bb --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/es_CL.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-10-06 08:55+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Chile) (http://www.transifex.com/odoo/odoo-9/language/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Cuenta bancaria" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Cuentas bancarias" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/et.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/et.po new file mode 100644 index 00000000..ba304146 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/et.po @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Eneli Õigus , 2018 +# Marek Pontus, 2018 +# Martin Aavastik , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Martin Aavastik , 2018\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:83 +msgid "; multiple order found" +msgstr "; multiple order found" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:81 +msgid "; no order found" +msgstr "; no order found" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:41 +msgid "" +"
\n" +"

Please use the following transfer details

\n" +"

%(bank_title)s

\n" +"%(bank_accounts)s\n" +"

Communication

\n" +"

Please use the order name as communication reference.

\n" +"
" +msgstr "" +"
\n" +"

Please use the following transfer details

\n" +"

%(bank_title)s

\n" +"%(bank_accounts)s\n" +"

Communication

\n" +"

Please use the order name as communication reference.

\n" +"
" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "Adyen" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Account" +msgstr "Pangakonto" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Accounts" +msgstr "Pangakontod" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Manual Configuration" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Makse saaja" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_transfer +#: model:ir.model.fields,field_description:payment_transfer.field_payment_acquirer__provider +msgid "Provider" +msgstr "Varustaja" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Sips" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Wire Transfer" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:79 +msgid "received data for reference %s" +msgstr "received data for reference %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fa.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fa.po new file mode 100644 index 00000000..1dd37242 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fa.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Hamed Mohammadi , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Hamed Mohammadi , 2018\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "حساب بانکی" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "حساب‌های بانکی" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" + +#~ msgid "Payment Acquirer" +#~ msgstr "دریافت کننده پرداخت" + +#~ msgid "Provider" +#~ msgstr "فراهم‌کننده" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fi.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fi.po new file mode 100644 index 00000000..38db449c --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fi.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Eino Mäkitalo , 2018 +# Martin Trigaux, 2018 +# Mikko Salmela , 2018 +# Jarmo Kortetjärvi , 2018 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 15:27+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Skannaa minut " +"pankkisovelluksessasi" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Viestintä: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Tilinumero" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Pankkitilit" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Koodi" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Mukautettu" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Mukautettu tila" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Ota QR-koodit käyttöön" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Ota QR-koodien käyttö käyttöön tilisiirrolla maksettaessa." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Viimeistele maksusi" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "Tunnus" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "TAI" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Vain mukautetuilla palveluntarjoajilla pitäisi olla mukautettu tila." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Maksupalveluntarjoaja" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Käytä seuraavia siirtotietoja" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Lataa odottava viesti uudelleen" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Asiakas on valinnut %(provider_name)s maksun suorittamiseksi." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Tämän maksupalveluntarjoajan tekninen koodi." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Tilisiirto" + +#~ msgid "; multiple order found" +#~ msgstr "; useita tilauksia löytyi" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Käytä seuraavia siirtotietoja

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Kommunikointi

\n" +#~ "

Käytä tilauksen nimeä viitteenä.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Maksun vastaanottaja" + +#~ msgid "Provider" +#~ msgstr "Palveluntarjoaja" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fo.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fo.po new file mode 100644 index 00000000..47bd385e --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fo.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-12-30 13:38+0000\n" +"Last-Translator: Jarnhold Nattestad \n" +"Language-Team: Faroese (http://www.transifex.com/odoo/odoo-9/language/fo/)\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Bankakonto" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Bankakontur" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fr.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fr.po new file mode 100644 index 00000000..01a36782 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fr.po @@ -0,0 +1,178 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Cécile Collart , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-17 17:26+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: French \n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Scannez-moi dans votre " +"application bancaire" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Communication : " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Compte bancaire" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Comptes bancaires" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Personnalisé" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Mode personnalisé" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom d'affichage" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Activer les codes QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" +"Activez l'utilisation de codes QR lors du paiement par virement bancaire." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Finaliser votre paiement" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "OU" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" +"Seules les fournisseurs personnalisés doivent avoir un mode personnalisé." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Fournisseur de paiement" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" +"Veuillez utiliser les informations suivantes pour le transfert bancaire." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Recharger le message en attente" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Le client a sélectionné %(provider_name)s pour effectuer le paiement." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Le code technique de ce fournisseur de paiement." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Virement bancaire" + +#~ msgid "; multiple order found" +#~ msgstr "; plusieurs commandes trouvées" + +#~ msgid "; no order found" +#~ msgstr "; aucune commande trouvée" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Veuillez mentionner les détails suivants pour le transfert bancaire\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Veuillez utiliser le numéro de commande comme communicartion.

\n" +#~ "
" + +#~ msgid "Manual Payment" +#~ msgstr "Paiement manuel" + +#~ msgid "Payment Acquirer" +#~ msgstr "Intermédiaire de Paiement" + +#~ msgid "Provider" +#~ msgstr "Fournisseur" + +#~ msgid "received data for reference %s" +#~ msgstr "a reçu les données avec pour référence %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fr_BE.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fr_BE.po new file mode 100644 index 00000000..2222e84f --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/fr_BE.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:18+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n" +"Language: fr_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Compte bancaire" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Comptes bancaires" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/gl.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/gl.po new file mode 100644 index 00000000..b5d93685 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/gl.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:18+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Galician (http://www.transifex.com/odoo/odoo-9/language/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Conta bancaria" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Contas bancarias" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/gu.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/gu.po new file mode 100644 index 00000000..a974b76a --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/gu.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-08-02 09:56+0000\n" +"PO-Revision-Date: 2018-08-02 09:56+0000\n" +"Last-Translator: Martin Trigaux, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Account" +msgstr "બેન્ક એકાઉન્ટ" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Accounts" +msgstr "બેન્કના ખાતાઓ" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/he.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/he.po new file mode 100644 index 00000000..b87ee596 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/he.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# ExcaliberX , 2019 +# Yihya Hugirat , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Yihya Hugirat , 2019\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "חשבון בנק" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "חשבונות בנק" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" + +#~ msgid "Payment Acquirer" +#~ msgstr "תשלום נקלט" + +#~ msgid "Provider" +#~ msgstr "ספק" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hi.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hi.po new file mode 100644 index 00000000..a2d1e1a5 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hi.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-26 08:56+0000\n" +"PO-Revision-Date: 2024-09-26 08:56+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: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking " +"app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hr.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hr.po new file mode 100644 index 00000000..870e13ae --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hr.po @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Bole , 2019 +# Karolina Tonković , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Karolina Tonković , 2019\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankovni račun" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankovni računi" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" + +#~ msgid "; multiple order found" +#~ msgstr "; pronađen višestruki nalog" + +#~ msgid "; no order found" +#~ msgstr "; nema pronađenog naloga" + +#~ msgid "Payment Acquirer" +#~ msgstr "Stjecatelj plaćanja" + +#~ msgid "Provider" +#~ msgstr "Davatelj " + +#~ msgid "received data for reference %s" +#~ msgstr "zaprimljeni podaci za referencu %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hu.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hu.po new file mode 100644 index 00000000..6c9bda34 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hu.po @@ -0,0 +1,170 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# krnkris, 2019 +# +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-29 19:46+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Hungarian \n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankszámla" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankszámlák" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Egyéni" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Egyéni mód" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "VAGY" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Fizetési szolgáltató" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Banki átutalás" + +#~ msgid "; multiple order found" +#~ msgstr "; többszörös rendelést talált" + +#~ msgid "; no order found" +#~ msgstr "; nem talált rendelést" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Kérem használja következő utalási részleteket

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Kommunikáció

\n" +#~ "

Kérem a régebbi név használatát kommunikáció hivatkozásként.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Fizetést lebonyolító" + +#~ msgid "Provider" +#~ msgstr "Szolgáltató" + +#~ msgid "received data for reference %s" +#~ msgstr "fogadott adat ehhez a referenciához %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hy.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hy.po new file mode 100644 index 00000000..7e525129 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/hy.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:18+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Armenian (http://www.transifex.com/odoo/odoo-9/language/hy/)\n" +"Language: hy\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Բանկային հաշիվներ" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Բանկային հաշիվներ" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/id.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/id.po new file mode 100644 index 00000000..1644c508 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/id.po @@ -0,0 +1,146 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Bonny Useful , 2017 +# Wahyu Setiawan , 2017 +# Martin Trigaux , 2017 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 02:34+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Indonesian \n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Scan saya di app banking " +"Anda" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Komunikasi: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Akun Bank" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Rekening Bank" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Khusus" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Mode Kustom" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Aktifkan Kode QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Aktifkan penggunaan kode QR saat membayar melalui transfer rekening" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Selesaikan pembayaran Anda" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "ATAU" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Hanya penyedia custom yang seharusnya memiliki mode custom." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Penyedia Pembayaran" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi pembayaran" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Silakan gunakan detail transfer berikut" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Muat Ulang Pesan Pending" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Pelanggan telah memilih %(provider_name)s untuk melakukan pembayaran." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kode teknis penyedia pembayaran ini." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Transfer rekening" + +#~ msgid "; multiple order found" +#~ msgstr "; beberapa pesanan ditemukan" + +#~ msgid "Payment Acquirer" +#~ msgstr "Acquirer pembayaran" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/is.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/is.po new file mode 100644 index 00000000..5f1442a5 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/is.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Bjorn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Bjorn Ingvarsson , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Account" +msgstr "Bankareikningur" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Accounts" +msgstr "Bankareikningar" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_transfer +#: model:ir.model.fields,field_description:payment_transfer.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/it.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/it.po new file mode 100644 index 00000000..bfc5dbe8 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/it.po @@ -0,0 +1,175 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Paolo Valier, 2019 +# Sergio Zanchetta , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-17 17:23+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Italian \n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Scansionami con l'app della tua " +"banca" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Causale: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Conto bancario" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Conti bancari" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Codice" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Personalizzata" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Modalità personalizzata" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Attiva i codici QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Enable the use of QR-codes when paying by wire transfer." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Completa il pagamento" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "OPPURE" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" +"Solo i fornitori personalizzati devono avere una modalità personalizzata." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Fornitore di pagamenti" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Usare le seguenti informazioni per il bonifico" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Ricarica messaggio in attesa" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Il cliente ha scelto %(provider_name)s per effettuare il pagamento." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Codice tecnico del fornitore di pagamenti." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Bonifico bancario" + +#~ msgid "; multiple order found" +#~ msgstr "; trovato ordine multiplo" + +#~ msgid "; no order found" +#~ msgstr "; nessun ordine trovato" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Utilizzare i seguenti dettagli di trasferimento

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Comunicazioni

\n" +#~ "

Usare il nome dell'ordine come riferimento per la comunicazione.

\n" +#~ "
" + +#~ msgid "Manual Payment" +#~ msgstr "Pagamento manuale" + +#~ msgid "Payment Acquirer" +#~ msgstr "Sistema di pagamento" + +#~ msgid "Provider" +#~ msgstr "Fornitore" + +#~ msgid "received data for reference %s" +#~ msgstr "ricevuti dati con riferimento %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ja.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ja.po new file mode 100644 index 00000000..a6771aeb --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ja.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Yoshi Tashiro , 2018 +# 高木正勝 , 2018 +# Norimichi Sugimoto , 2018 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-14 21:16+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Japanese \n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "銀行アプリでスキャンして下さい" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "コミュニケーション: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "銀行口座" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "銀行口座" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "コード" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "カスタム" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "カスタムモード" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "QRコードを有効化" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "電信送金で支払う際にQRコードを使用できるようにします。" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "支払を確定する" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "又は" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "カスタムプロバイダのみがカスタムモードを持つべきです。" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "決済プロバイダー" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "下記口座へお振込をお願い致します。" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "保留メッセージを再ロード" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "顧客は支払に%(provider_name)sを選択しました。" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "この決済プロバイダーのテクニカルコード。" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "電信送金" + +#~ msgid "; multiple order found" +#~ msgstr "; 複数の注文が見つかりました" + +#~ msgid "; no order found" +#~ msgstr "; 注文が見つかりません" + +#~ msgid "Adyen" +#~ msgstr "Adyen" + +#~ msgid "Authorize.Net" +#~ msgstr "Authorize.Net" + +#~ msgid "Buckaroo" +#~ msgstr "Buckaroo" + +#~ msgid "Manual Configuration" +#~ msgstr "手動構成" + +#~ msgid "Ogone" +#~ msgstr "Ogone" + +#~ msgid "PayUmoney" +#~ msgstr "PayUmoney" + +#~ msgid "Payment Acquirer" +#~ msgstr "決済サービス" + +#~ msgid "Paypal" +#~ msgstr "PayPal" + +#~ msgid "Provider" +#~ msgstr "プロバイダ" + +#~ msgid "Sips" +#~ msgstr "Sips" + +#~ msgid "Stripe" +#~ msgstr "Stripe" + +#~ msgid "received data for reference %s" +#~ msgstr "参照%sの受信データ" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ka.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ka.po new file mode 100644 index 00000000..845ed6fc --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ka.po @@ -0,0 +1,45 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-11-25 07:36+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Georgian (http://www.transifex.com/odoo/odoo-9/language/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "საბანკო ანგარიში" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "საბანკო ანგარიშები" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "გადახდის ოპერატორი" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:19 +#: model:payment.acquirer,name:payment_transfer.payment_acquirer_transfer +msgid "Wire Transfer" +msgstr "გადარიცხვა" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/kab.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/kab.po new file mode 100644 index 00000000..39625c80 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/kab.po @@ -0,0 +1,34 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:18+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Kabyle (http://www.transifex.com/odoo/odoo-9/language/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Amiḍan n lbanka" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Imiḍanen n lbanka" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tanigawt n ufru " diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/km.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/km.po new file mode 100644 index 00000000..6f171154 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/km.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Sengtha Chay , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Sengtha Chay , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Account" +msgstr "គណនីធនាគារ" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Accounts" +msgstr "គណនីធនាគារ" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ko.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ko.po new file mode 100644 index 00000000..8b356623 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ko.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# 최재호 , 2018 +# Linkup , 2018 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 04:41+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Korean \n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "금융 앱에서 스캔해 " +"주세요." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "커뮤니케이션: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "은행 계좌" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "은행 계좌" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "코드" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "사용자 정의" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "사용자 지정 모드" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "표시명" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "QR 코드 활성화" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "QR 코드를 사용하여 계좌 이체를 할 수 있게 합니다." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "결제 완료하기" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "또는" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "사용자 지정 공급업체만 사용자 지정 모드를 가질 수 있습니다." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "결제대행업체" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "지불 거래" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "다음과 같은 이동 세부정보를 사용하십시오" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "보류 메시지 새로 고침" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "고객이 결제를 위해 %(provider_name)s를 선택했습니다." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "이 결제대행업체의 기술 코드입니다." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "계좌 이체" + +#~ msgid "Payment Acquirer" +#~ msgstr "지불 취득자" + +#~ msgid "Provider" +#~ msgstr "공급자" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ku.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ku.po new file mode 100644 index 00000000..a2d1e1a5 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ku.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-26 08:56+0000\n" +"PO-Revision-Date: 2024-09-26 08:56+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: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking " +"app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lb.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lb.po new file mode 100644 index 00000000..b9438b1e --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lb.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-08-26 08:16+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:0 +msgid "; multiple order found" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:0 +msgid "; no order found" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:0 +msgid "" +"
\n" +"

Please use the following transfer details

\n" +"

%(bank_title)s

\n" +"%(bank_accounts)s\n" +"

Communication

\n" +"

Please use the order name as communication reference.

\n" +"
" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:0 +msgid "Bank Account" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:0 +msgid "Bank Accounts" +msgstr "" + +#. module: payment_transfer +#: model:ir.model.fields.selection,name:payment_transfer.selection__payment_acquirer__provider__transfer +msgid "Manual Payment" +msgstr "" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_transfer +#: model:ir.model.fields,field_description:payment_transfer.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:0 +msgid "received data for reference %s" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lt.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lt.po new file mode 100644 index 00000000..cb643351 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lt.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Silvija Butko , 2019 +# digitouch UAB , 2019 +# Linas Versada , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 18:37+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Lithuanian \n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Banko sąskaita" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Banko sąskaitos" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kodas" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Nestandartinis" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Pasirinktinis režimas" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Mokėjimo paslaugos tiekėjas" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Mokėjimas bankiniu pavedimu" + +#~ msgid "; multiple order found" +#~ msgstr "; rasti keli užsakymai" + +#~ msgid "; no order found" +#~ msgstr "; užsakymų nerasta" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Naudokite šiuos operacijos duomenis

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Komunikacija

\n" +#~ "

Naudokite užsakymo pavadinimą kaip numerį komunikacijai.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Mokėjimo surinkėjas" + +#~ msgid "Provider" +#~ msgstr "Tiekėjas" + +#~ msgid "received data for reference %s" +#~ msgstr "gauti duomenys numeriui %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lv.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lv.po new file mode 100644 index 00000000..3997461a --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/lv.po @@ -0,0 +1,63 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:70 +msgid "; multiple order found" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:68 +msgid "; no order found" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:28 +msgid "" +"
\n" +"

Please use the following transfer details

\n" +"

%(bank_title)s

\n" +"%(bank_accounts)s\n" +"

Communication

\n" +"

Please use the order name as communication reference.

\n" +"
" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:26 +msgid "Bank Account" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:26 +msgid "Bank Accounts" +msgstr "" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:66 +msgid "received data for reference %s" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/mk.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/mk.po new file mode 100644 index 00000000..038cd471 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/mk.po @@ -0,0 +1,56 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Aleksandar Vangelovski , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2016-07-08 16:00+0000\n" +"Last-Translator: Aleksandar Vangelovski \n" +"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: payment_transfer +#: model_terms:payment.acquirer,cancel_msg:payment_transfer.payment_acquirer_transfer +msgid "Cancel, Your payment has been cancelled." +msgstr "Откажи, Вашата наплата Ви беше откажана." + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "Банкарска сметка" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "Банкарски сметки" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Стакнувач на плаќање" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "Трансакција на плаќање" + +#. module: payment_transfer +#: model_terms:payment.acquirer,pre_msg:payment_transfer.payment_acquirer_transfer +msgid "Transfer information will be provided after choosing the payment mode." +msgstr "Информации за трансфер ќе Ви бидат приложени откако ќе го одберете начинот на плаќање." + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:19 +#: model:payment.acquirer,name:payment_transfer.payment_acquirer_transfer +msgid "Wire Transfer" +msgstr "Плаќање по банкарски налог" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/mn.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/mn.po new file mode 100644 index 00000000..605ac0f7 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/mn.po @@ -0,0 +1,167 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Baskhuu Lodoikhuu , 2019 +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Банкны данс" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Банкны дансууд" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" + +#~ msgid "; multiple order found" +#~ msgstr "; олон захиалга олдлоо" + +#~ msgid "; no order found" +#~ msgstr "; захиалга олдсонгүй" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Дараах шилжүүлгийн дэлгэрэнгүйг хэрэглэнэ үү

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Харилцаа

\n" +#~ "

Захиалгын нэрийг харилцааны код болгож хэрэглээрэй.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Төлбөрийн хэрэгсэл" + +#~ msgid "Provider" +#~ msgstr "Үйлчилгээ үзүүлэгч" + +#~ msgid "received data for reference %s" +#~ msgstr "%s кодод хүлээн авсан өгөгдөл" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/my.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/my.po new file mode 100644 index 00000000..a2d1e1a5 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/my.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 18.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-26 08:56+0000\n" +"PO-Revision-Date: 2024-09-26 08:56+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: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking " +"app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/nb.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/nb.po new file mode 100644 index 00000000..4f1149d5 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/nb.po @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 18:37+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Norwegian Bokmål \n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankkonti" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Tilpasset" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "Eller" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Betalingsleverandør" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Vennligst bruk følgende overføringsdetaljer" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Bankoverføring" + +#~ msgid "; multiple order found" +#~ msgstr "; flere ordrer funnet" + +#~ msgid "; no order found" +#~ msgstr "; ingen ordre funnet" + +#~ msgid "Payment Acquirer" +#~ msgstr "Betalingsløsning" + +#~ msgid "Provider" +#~ msgstr "Tilbyder" + +#~ msgid "received data for reference %s" +#~ msgstr "mottatt data for referanse %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/nl.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/nl.po new file mode 100644 index 00000000..7d01982b --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/nl.po @@ -0,0 +1,176 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Erwin van der Ploeg , 2019 +# Yenthe Van Ginneken , 2019 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-14 08:06+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Dutch \n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Scan me in je banking " +"app" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Communicatie: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankrekening" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankrekeningen" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Aangepast" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Aangepaste modus" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "QR codes inschakelen" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Schakel het gebruik van QR-codes in bij betaling via overschrijving." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Voltooi je betaling" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "OF" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Enkel gepersonaliseerde providers moeten een aangepaste modus hebben." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Betaalprovider" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Gebruik de volgende tranfer details." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Bericht dat in behandeling is herladen" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" +"De klant heeft %(provider_name)s geselecteerd om de betaling uit te voeren." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "De technische code van deze betaalprovider." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Overschrijving" + +#~ msgid "; multiple order found" +#~ msgstr "; meerdere orders gevonden" + +#~ msgid "; no order found" +#~ msgstr "; geen order gevonden" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Gebruik de volgende transactie gegevens

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communicatie

\n" +#~ "

Gebruik de orderreferentie als communicatie referentie.

\n" +#~ "
" + +#~ msgid "Manual Payment" +#~ msgstr "Manuele betaling" + +#~ msgid "Payment Acquirer" +#~ msgstr "Betalingsprovider" + +#~ msgid "Provider" +#~ msgstr "Provider" + +#~ msgid "received data for reference %s" +#~ msgstr "Data ontvangen voor referentie %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/payment_custom.pot b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/payment_custom.pot new file mode 100644 index 00000000..4a8b8d0c --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/payment_custom.pot @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 19.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-11 13:58+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: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking " +"app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pl.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pl.po new file mode 100644 index 00000000..486003e1 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pl.po @@ -0,0 +1,155 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Dariusz Żbikowski , 2019 +# Piotr Szlązak , 2019 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 10:05+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Polish \n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Konto bankowe" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Konta bankowe" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Własne" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Tryb własny" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "LUB" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Dostawca Płatności" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Proszę użyć następujących danych do przelewu" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kod techniczny tego dostawcy usług płatniczych." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Przelew bankowy" + +#~ msgid "; multiple order found" +#~ msgstr "; znaleziono wielokrotne zamówienie" + +#~ msgid "; no order found" +#~ msgstr "; nie znaleziono zamówienia" + +#~ msgid "Payment Acquirer" +#~ msgstr "Beneficjent płatności" + +#~ msgid "Provider" +#~ msgstr "Dostawca" + +#~ msgid "received data for reference %s" +#~ msgstr "odebrane dane do referencji %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pt.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pt.po new file mode 100644 index 00000000..a7a8d184 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pt.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 18:37+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Portuguese \n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Conta bancária" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Contas bancárias" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do pagamento" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pt_BR.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pt_BR.po new file mode 100644 index 00000000..a4c296e1 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/pt_BR.po @@ -0,0 +1,172 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Mateus Lopes , 2019 +# grazziano , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-17 17:30+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Portuguese (Brazil) \n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Escaneie no app do seu " +"banco" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Comunicação: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Conta bancária" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Contas bancárias" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Personalizado" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Modo personalizado" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Habilitar códigos QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Ativar o uso de códigos QR em pagamentos por transferência bancária." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Finalize o pagamento" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "OU" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Somente provedores personalizados devem ter o modo personalizado." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Provedor de serviços de pagamento" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do pagamento" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Use os seguintes detalhes de transferência" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Recarregar mensagem de pendência" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "O cliente selecionou %(provider_name)s para fazer o pagamento." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "O código técnico deste provedor de pagamento." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Transferência bancária" + +#~ msgid "; multiple order found" +#~ msgstr "; múltiplas ordens encontradas" + +#~ msgid "; no order found" +#~ msgstr "; nenhuma ordem encontrada" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Utilize os seguintes detalhes de transferência

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Comunicação

\n" +#~ "

Por favor utilize o nome da ordem como referência de comunicação.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Método de Pagamento" + +#~ msgid "Provider" +#~ msgstr "Fornecedor" + +#~ msgid "received data for reference %s" +#~ msgstr "dados recebidos para referência %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ro.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ro.po new file mode 100644 index 00000000..dadb010a --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ro.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ru.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ru.po new file mode 100644 index 00000000..c0d72f48 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/ru.po @@ -0,0 +1,143 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +# Translators: +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 02:32+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Russian \n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Отсканируйте меня в своем " +"банковском приложении" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Коммуникация: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Банковский счёт" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Банковские счета" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Пользовательский" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Пользовательский режим" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Включить QR-коды" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Включите использование QR-кодов при оплате банковским переводом." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Завершите оплату" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "ИЛИ" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" +"Только пользовательские провайдеры должны иметь пользовательский режим." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Поставщик платежей" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платеж" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Пожалуйста, используйте следующую информацию для платежа" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Сообщение об ожидании перезагрузки" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Клиент выбрал %(provider_name)s для совершения платежа." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технический код данного провайдера платежей." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Банковский перевод" + +#~ msgid "No transaction found matching reference %s." +#~ msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s." diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sk.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sk.po new file mode 100644 index 00000000..6af7324d --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sk.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Pavol Krnáč , 2018 +# Jaroslav Bosansky , 2018 +# Miroslav Fic , 2018 +# gebri , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: gebri , 2018\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:83 +msgid "; multiple order found" +msgstr "; viacnásobná objednávka nájdená" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:81 +msgid "; no order found" +msgstr "; žiadna objednávka nájdená" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "Adyen" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "Authorize.Net " + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Account" +msgstr "Bankový účet" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:39 +msgid "Bank Accounts" +msgstr "Bankové Účty" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "Ogone" + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Príjemca platby " + +#. module: payment_transfer +#: model:ir.model,name:payment_transfer.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_transfer +#: model:ir.model.fields,field_description:payment_transfer.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovateľ" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Sips" + +#. module: payment_transfer +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Drôtový prenos" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment.py:79 +msgid "received data for reference %s" +msgstr "prijaté dáta pre referenciu %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sl.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sl.po new file mode 100644 index 00000000..7611acaf --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sl.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 21:37+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Slovenian \n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bančni račun" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bančni računi" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Oznaka" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Prilagojeno" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Zaključi plačilo" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "ALI" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Ponudnik plačil" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Bančno nakazilo" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sr@latin.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sr@latin.po new file mode 100644 index 00000000..1c43d1f8 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sr@latin.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Slobodan Simić , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Slobodan Simić , 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankovni račun" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Банковни рачуни" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sv.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sv.po new file mode 100644 index 00000000..6cff6e9e --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/sv.po @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Kristoffer Grundström , 2018 +# Martin Trigaux, 2018 +# Anders Wallenquist , 2018 +# Daniel Forslund , 2018 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 21:21+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Swedish \n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Scan mig i din bankapp" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Kommunikation: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Bankkonto" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Bankkonton" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Anpassad" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Anpassat läge" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Aktivera QR Koder" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Aktivera användningen av QR-koder för betalning via banköverföring." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Slutför din betalning" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "ELLER" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Endast anpassade leverantörer bör ha ett anpassat läge." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Betalningsleverantör" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Meddelande om väntande omlastning" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Kunden har valt %(provider_name)s för att göra betalningen." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Den tekniska koden för denna betalningsleverantör." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Bankinbetalning" + +#~ msgid "; multiple order found" +#~ msgstr "; flerfaldig beställning funnen" + +#~ msgid "; no order found" +#~ msgstr "; ingen beställning funnen" + +#~ msgid "Payment Acquirer" +#~ msgstr "Betalväxel" + +#~ msgid "Provider" +#~ msgstr "Leverantör" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/te.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/te.po new file mode 100644 index 00000000..21082c00 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/te.po @@ -0,0 +1,29 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:18+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Telugu (http://www.transifex.com/odoo/odoo-9/language/te/)\n" +"Language: te\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +#: model_terms:payment.acquirer,post_msg:payment_transfer.payment_acquirer_transfer +msgid "Bank Account" +msgstr "బ్యాంకు ఖాతా" + +#. module: payment_transfer +#: code:addons/payment_transfer/models/payment_acquirer.py:30 +msgid "Bank Accounts" +msgstr "బ్యాంకు ఖాతాలు" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/th.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/th.po new file mode 100644 index 00000000..92a5352b --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/th.po @@ -0,0 +1,147 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2018 +# Khwunchai Jaengsawang , 2018 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 21:33+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Thai \n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"สแกนฉันในแอปธนาคารของคุณ" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "การสื่อสาร: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "บัญชีธนาคาร" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "บัญชีธนาคาร" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "โค้ด" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "กำหนดเอง" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "โหมดกำหนดเอง" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "แสดงชื่อ" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "เปิดใช้งานรหัส QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "เปิดใช้งานการใช้รหัส QR โค้ดเมื่อชำระเงินด้วยการโอนเงิน" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "ดำเนินการชำระเงินให้เสร็จสิ้น" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ไอดี" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "หรือ" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "ผู้ให้บริการแบบกำหนดเองเท่านั้นที่ควรมีโหมดแบบกำหนดเอง" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "ผู้ให้บริการชำระเงิน" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "ธุรกรรมสำหรับการชำระเงิน" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "โหลดข้อความที่รอดำเนินการซ้ำ" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "ลูกค้าได้เลือก %(provider_name)s เพื่อชำระเงิน" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "โอนเงิน" + +#~ msgid "Payment Acquirer" +#~ msgstr "ผู้รับชำระ" + +#~ msgid "Paypal" +#~ msgstr "Paypal" + +#~ msgid "Provider" +#~ msgstr "ผู้ให้บริการ" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/tr.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/tr.po new file mode 100644 index 00000000..faf761e2 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/tr.po @@ -0,0 +1,173 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Ediz Duman , 2019 +# Martin Trigaux, 2019 +# Murat Kaplan , 2019 +# Ahmet Altinisik , 2019 +# Umur Akın , 2019 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 02:35+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Turkish \n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "İletişim:" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Banka Hesabı" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Banka Hesapları" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Özel" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Özel mod" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "QR Kodlarını Etkinleştir" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" +"Banka havalesiyle ödeme yaparken QR kodlarının kullanılmasını etkinleştirin." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "VEYA" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Ödeme Sağlayıcı" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Lütfen aşağıdaki transfer bilgilerini kullanın" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Bu ödeme sağlayıcısının teknik kodu." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Manuel Transfer" + +#~ msgid "; multiple order found" +#~ msgstr "; birden çok emir bulundu" + +#~ msgid "; no order found" +#~ msgstr "; sipariş bulunmadı" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Lütfen aşağıdaki transfer detaylarını kullanın

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

İletişim

\n" +#~ "

İletişim referansı olarak lütfen sipariş adınızı kullanın.

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "Ödeme Alıcısı" + +#~ msgid "Provider" +#~ msgstr "Sağlayıcı" + +#~ msgid "received data for reference %s" +#~ msgstr "referans için alınan veri %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/uk.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/uk.po new file mode 100644 index 00000000..0fdfd483 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/uk.po @@ -0,0 +1,174 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# Alina Lisnenko , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Alina Lisnenko , 2019\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \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: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Банківський рахунок" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Банківські рахунки" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "" + +#~ msgid "; multiple order found" +#~ msgstr "; знайдено кілька замовлень" + +#~ msgid "; no order found" +#~ msgstr "; не знайдено жодного замовлення" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

Будь-ласка, використовуйте наступні дані переказу

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Зв'язок

\n" +#~ "

Будь-ласка, використовуйте ім'я замовлення як посилання на зв'язок.\n" +#~ "

" + +#~ msgid "Manual Payment" +#~ msgstr "Ручний платіж" + +#~ msgid "Payment Acquirer" +#~ msgstr "Платіжний еквайєр" + +#~ msgid "Provider" +#~ msgstr "Провайдер" + +#~ msgid "received data for reference %s" +#~ msgstr "отримані дані для довідки %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/vi.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/vi.po new file mode 100644 index 00000000..675a1979 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/vi.po @@ -0,0 +1,152 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Nancy Momoland , 2019 +# Duy BQ , 2019 +# Dung Nguyen Thi , 2019 +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 02:35+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"Hãy quét tôi bằng ứng dụng ngân " +"hàng của bạn" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "Thông tin: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "Tài khoản ngân hàng" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "Tài khoản ngân hàng" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "Mã" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "Tùy chỉnh" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "Chế độ tùy chỉnh" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "Bật mã QR" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "Cho phép sử dụng mã QR khi thanh toán bằng chuyển khoản ngân hàng." + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "Hoàn tất thanh toán của bạn" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "HOẶC" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "Chỉ các nhà cung cấp tùy chỉnh mới có chế độ tùy chỉnh." + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "Nhà cung cấp dịch vụ thanh toán" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "Vui lòng sử dụng các chi tiết chuyển khoản sau" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "Tải lại thông báo treo" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "Khách hàng đã chọn %(provider_name)s để tiến hành thanh toán." + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Mã kỹ thuật của nhà cung cấp dịch vụ thanh toán này." + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "Chuyển khoản ngân hàng" + +#~ msgid "; multiple order found" +#~ msgstr "; thấy một số đơn hàng" + +#~ msgid "; no order found" +#~ msgstr "; không tìm thấy đơn hàng" + +#~ msgid "Payment Acquirer" +#~ msgstr "NCC dịch vụ Thanh toán" + +#~ msgid "Provider" +#~ msgstr "Nhà cung cấp" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/zh_CN.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/zh_CN.po new file mode 100644 index 00000000..2c39e92d --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/zh_CN.po @@ -0,0 +1,169 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_transfer +# +# Translators: +# Martin Trigaux, 2019 +# inspur qiuguodong , 2019 +# "Tiffany Chang (tic)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 15:27+0000\n" +"Last-Translator: \"Tiffany Chang (tic)\" \n" +"Language-Team: Chinese (Simplified Han script) \n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "在银行应用程序中扫描我" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "交流: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "银行账户" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "银行账户" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "代码" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "自定义" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "自定义模式" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "启用二维码" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "在用电汇付款时,启用二维码的使用。" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "完成付款" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "或" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "只有自定义提供商才应有自定义模式。" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "请使用以下转账详细信息" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "重新加载待发信息" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "客户已选择%(provider_name)s付款。" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "该支付提供商的技术代码。" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "电汇" + +#~ msgid "; multiple order found" +#~ msgstr "; 找到多个订单" + +#~ msgid "; no order found" +#~ msgstr "; 没有订单" + +#~ msgid "" +#~ "
\n" +#~ "

Please use the following transfer details

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

Communication

\n" +#~ "

Please use the order name as communication reference.

\n" +#~ "
" +#~ msgstr "" +#~ "
\n" +#~ "

详情请参考

\n" +#~ "

%(bank_title)s

\n" +#~ "%(bank_accounts)s\n" +#~ "

通信

\n" +#~ "

请使用订单名称作为通讯参考。

\n" +#~ "
" + +#~ msgid "Payment Acquirer" +#~ msgstr "付款收单单位" + +#~ msgid "Provider" +#~ msgstr "供应商" + +#~ msgid "received data for reference %s" +#~ msgstr "接收数据供参考 %s" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/zh_TW.po b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/zh_TW.po new file mode 100644 index 00000000..cf87d4f4 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/i18n/zh_TW.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_custom +# +# Translators: +# Martin Trigaux, 2025 +# Wil Odoo, 2025 +# +# "Dylan Kiss (dyki)" , 2025. +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~18.3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-09-11 13:58+0000\n" +"PO-Revision-Date: 2025-09-16 08:10+0000\n" +"Last-Translator: \"Dylan Kiss (dyki)\" \n" +"Language-Team: Chinese (Traditional Han script) \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.12.2\n" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "" +"Scan me in your banking app" +msgstr "" +"用你的銀行程式掃瞄我" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Communication: " +msgstr "通訊: " + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Account" +msgstr "銀行帳戶" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Bank Accounts" +msgstr "銀行帳戶" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__code +msgid "Code" +msgstr "代碼" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__code__custom +msgid "Custom" +msgstr "自訂" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__custom_mode +msgid "Custom Mode" +msgstr "自訂模式" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__display_name +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__qr_code +msgid "Enable QR Codes" +msgstr "啟用QR Codes" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__qr_code +msgid "Enable the use of QR-codes when paying by wire transfer." +msgstr "通過電匯付款時啟用QR Codes" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "Finalize your payment" +msgstr "最後檢查你的付款" + +#. module: payment_custom +#: model:ir.model.fields,field_description:payment_custom.field_payment_provider__id +#: model:ir.model.fields,field_description:payment_custom.field_payment_transaction__id +msgid "ID" +msgstr "識別號" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.custom_state_header +msgid "OR" +msgstr "或" + +#. module: payment_custom +#: model:ir.model.constraint,message:payment_custom.constraint_payment_provider_custom_providers_setup +msgid "Only custom providers should have a custom mode." +msgstr "只限自訂服務商才應該有自訂模式。" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_provider +msgid "Payment Provider" +msgstr "付款服務商" + +#. module: payment_custom +#: model:ir.model,name:payment_custom.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_provider.py:0 +msgid "Please use the following transfer details" +msgstr "請使用以下轉帳詳細資訊" + +#. module: payment_custom +#: model_terms:ir.ui.view,arch_db:payment_custom.payment_provider_form +msgid "Reload Pending Message" +msgstr "重新載入待處理訊息" + +#. module: payment_custom +#. odoo-python +#: code:addons/payment_custom/models/payment_transaction.py:0 +msgid "The customer has selected %(provider_name)s to make the payment." +msgstr "客戶已選擇 %(provider_name)s 作付款。" + +#. module: payment_custom +#: model:ir.model.fields,help:payment_custom.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "此付款服務商的技術代碼。" + +#. module: payment_custom +#: model:ir.model.fields.selection,name:payment_custom.selection__payment_provider__custom_mode__wire_transfer +#: model:payment.method,name:payment_custom.payment_method_wire_transfer +msgid "Wire Transfer" +msgstr "電匯" + +#~ msgid "No transaction found matching reference %s." +#~ msgstr "沒有找到匹配參考 %s 的交易。" diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/__init__.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/__init__.py new file mode 100644 index 00000000..08dfb8af --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/__init__.py @@ -0,0 +1,4 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import payment_provider +from . import payment_transaction diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/payment_provider.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/payment_provider.py new file mode 100644 index 00000000..33f1a143 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/payment_provider.py @@ -0,0 +1,85 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import _, api, fields, models +from odoo.fields import Domain + +from odoo.addons.payment_custom import const + + +class PaymentProvider(models.Model): + _inherit = 'payment.provider' + + _custom_providers_setup = models.Constraint( + "CHECK(custom_mode IS NULL OR (code = 'custom' AND custom_mode IS NOT NULL))", + 'Only custom providers should have a custom mode.', + ) + + code = fields.Selection( + selection_add=[('custom', "Custom")], ondelete={'custom': 'set default'} + ) + custom_mode = fields.Selection( + string="Custom Mode", + selection=[('wire_transfer', "Wire Transfer")], + required_if_provider='custom', + ) + qr_code = fields.Boolean( + string="Enable QR Codes", help="Enable the use of QR-codes when paying by wire transfer.") + + # === CRUD METHODS ===# + + @api.model_create_multi + def create(self, vals_list): + providers = super().create(vals_list) + providers.filtered(lambda p: p.custom_mode == 'wire_transfer').pending_msg = None + return providers + + def _get_default_payment_method_codes(self): + """ Override of `payment` to return the default payment method codes. """ + self.ensure_one() + if self.code != 'custom' or self.custom_mode != 'wire_transfer': + return super()._get_default_payment_method_codes() + return const.DEFAULT_PAYMENT_METHOD_CODES + + # === ACTION METHODS ===# + + def action_recompute_pending_msg(self): + """ Recompute the pending message to include the existing bank accounts. """ + account_payment_module = self.env['ir.module.module']._get('account_payment') + if account_payment_module.state == 'installed': + for provider in self.filtered(lambda p: p.custom_mode == 'wire_transfer'): + company_id = provider.company_id.id + accounts = self.env['account.journal'].search([ + *self.env['account.journal']._check_company_domain(company_id), + ('type', '=', 'bank'), + ]).bank_account_id + account_names = "".join(f"
  • {account.display_name}
  • " for account in accounts) + provider.pending_msg = f'
    ' \ + f'
    {_("Please use the following transfer details")}
    ' \ + f'


    ' \ + f'
    {_("Bank Account") if len(accounts) == 1 else _("Bank Accounts")}
    ' \ + f'
      {account_names}
    '\ + f'


    ' \ + f'
    ' + + # === SETUP METHODS === # + + @api.model + def _get_provider_domain(self, provider_code, *, custom_mode='', **kwargs): + res = super()._get_provider_domain(provider_code, custom_mode=custom_mode, **kwargs) + if provider_code == 'custom' and custom_mode: + return Domain.AND([res, [('custom_mode', '=', custom_mode)]]) + return res + + @api.model + def _get_removal_values(self): + """ Override of `payment` to nullify the `custom_mode` field. """ + res = super()._get_removal_values() + res['custom_mode'] = None + return res + + def _transfer_ensure_pending_msg_is_set(self): + transfer_providers_without_msg = self.filtered( + lambda p: p.custom_mode == 'wire_transfer' and not p.pending_msg + ) + if transfer_providers_without_msg: + transfer_providers_without_msg.action_recompute_pending_msg() diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/payment_transaction.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/payment_transaction.py new file mode 100644 index 00000000..856a75bb --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/models/payment_transaction.py @@ -0,0 +1,86 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import _, models + +from odoo.addons.payment.logging import get_payment_logger +from odoo.addons.payment_custom.controllers.main import CustomController + + +_logger = get_payment_logger(__name__) + + +class PaymentTransaction(models.Model): + _inherit = 'payment.transaction' + + def _get_specific_rendering_values(self, processing_values): + """ Override of payment to return custom-specific rendering values. + + Note: self.ensure_one() from `_get_processing_values` + + :param dict processing_values: The generic and specific processing values of the transaction + :return: The dict of provider-specific processing values + :rtype: dict + """ + if self.provider_code != 'custom': + return super()._get_specific_rendering_values(processing_values) + + return { + 'api_url': CustomController._process_url, + 'reference': self.reference, + } + + def _get_communication(self): + """ Return the communication the user should use for their transaction. + + This communication might change according to the settings and the accounting localization. + + Note: self.ensure_one() + + :return: The selected communication. + :rtype: str + """ + self.ensure_one() + communication = "" + if hasattr(self, 'invoice_ids') and self.invoice_ids: + communication = self.invoice_ids[0].payment_reference + elif hasattr(self, 'sale_order_ids') and self.sale_order_ids: + communication = self.sale_order_ids[0].reference + return communication or self.reference + + def _extract_amount_data(self, payment_data): + """Override of `payment` to skip the amount validation for custom flows.""" + if self.provider_code != 'custom': + return super()._extract_amount_data(payment_data) + return None + + def _apply_updates(self, payment_data): + """Override of `payment` to update the transaction based on the payment data.""" + if self.provider_code != 'custom': + return super()._apply_updates(payment_data) + + _logger.info( + "Validated custom payment for transaction %s: set as pending.", self.reference + ) + self._set_pending() + + def _log_received_message(self): + """ Override of `payment` to remove custom providers from the recordset. + + :return: None + """ + other_provider_txs = self.filtered(lambda t: t.provider_code != 'custom') + super(PaymentTransaction, other_provider_txs)._log_received_message() + + def _get_sent_message(self): + """ Override of payment to return a different message. + + :return: The 'transaction sent' message + :rtype: str + """ + message = super()._get_sent_message() + if self.provider_code == 'custom': + message = _( + "The customer has selected %(provider_name)s to make the payment.", + provider_name=self.provider_id.name + ) + return message diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/description/icon.png b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/description/icon.png new file mode 100644 index 00000000..68f2f1cc Binary files /dev/null and b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/description/icon.png differ diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/description/icon.svg b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/description/icon.svg new file mode 100644 index 00000000..5a9c699b --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/description/icon.svg @@ -0,0 +1 @@ + diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/img/wire_transfer.png b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/img/wire_transfer.png new file mode 100644 index 00000000..31fdf8d7 Binary files /dev/null and b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/img/wire_transfer.png differ diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/src/interactions/post_processing.js b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/src/interactions/post_processing.js new file mode 100644 index 00000000..69c5fea2 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/static/src/interactions/post_processing.js @@ -0,0 +1,21 @@ +import { PaymentPostProcessing } from '@payment/interactions/post_processing'; +import { patch } from '@web/core/utils/patch'; + +patch(PaymentPostProcessing, { + + /** + * Don't wait for the transaction to be confirmed before redirecting customers to the landing + * route, because custom transactions remain in the state 'pending' forever. + * + * @override method from `@payment/interactions/post_processing` +- * @param {string} providerCode - The code of the provider handling the transaction. + */ + getFinalStates(providerCode) { + const finalStates = super.getFinalStates(...arguments); + if (providerCode === 'custom') { + finalStates.add('pending'); + } + return finalStates; + }, + +}); diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/__init__.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/__init__.py new file mode 100644 index 00000000..a7483b2c --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/__init__.py @@ -0,0 +1,3 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import test_payment_transaction diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/common.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/common.py new file mode 100644 index 00000000..eda6e67e --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/common.py @@ -0,0 +1,15 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.fields import Domain + +from odoo.addons.payment.tests.common import PaymentCommon + + +class PaymentCustomCommon(PaymentCommon): + + @classmethod + def _get_provider_domain(cls, code, custom_mode=None): + domain = super()._get_provider_domain(code) + if custom_mode: + domain = Domain.AND([domain, [('custom_mode', '=', custom_mode)]]) + return domain diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/test_payment_transaction.py b/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/test_payment_transaction.py new file mode 100644 index 00000000..6507c45d --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/tests/test_payment_transaction.py @@ -0,0 +1,65 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. +import unittest + +from odoo import fields +from odoo.fields import Command +from odoo.tests import tagged + +from odoo.addons.payment_custom.tests.common import PaymentCustomCommon + + +@tagged('-at_install', 'post_install') +class TestPaymentTransaction(PaymentCustomCommon): + + @classmethod + def setUpClass(cls): + super().setUpClass() + if 'product.product' not in cls.env: + raise unittest.SkipTest("requires product") + + cls.provider = cls._prepare_provider(code='custom', custom_mode='wire_transfer') + cls.product = cls.env['product.product'].create({ + 'name': "test product", 'list_price': cls.amount + }) + + def test_communication_based_on_transaction_reference(self): + """ Test that the payment communication falls back to the transaction reference when there + is no linked invoice or sales order. """ + tx = self._create_transaction(flow='direct', reference="test") + + self.assertEqual(tx._get_communication(), "test") + + def test_communication_for_invoice(self): + """ Test that the communication displayed is the invoice payment reference. """ + account_payment_module = self.env['ir.module.module']._get('account_payment') + if account_payment_module.state != 'installed': + self.skipTest("account_payment module is not installed") + + invoice = self.env['account.move'].create({ + 'move_type': 'in_invoice', + 'partner_id': self.partner.id, + 'invoice_date': fields.Date.from_string('2019-01-01'), + 'currency_id': self.currency.id, + 'invoice_line_ids': [Command.create({'product_id': self.product.id, 'quantity': 1})], + }) + invoice.action_post() + tx = self._create_transaction(flow='direct', invoice_ids=[invoice.id]) + + invoice.payment_reference = "test" + self.assertEqual(tx._get_communication(), "test") + + def test_communication_for_sale_order(self): + """ Test that the communication displayed is the sale order reference. """ + sale_module = self.env['ir.module.module']._get('sale') + if sale_module.state != 'installed': + self.skipTest("sale module is not installed") + + sale_order = self.env['sale.order'].create({ + 'partner_id': self.partner.id, + 'order_line': [Command.create({'product_id': self.product.id, 'product_uom_qty': 1})], + }) + sale_order.action_confirm() + tx = self._create_transaction(flow='direct', sale_order_ids=[sale_order.id]) + + sale_order.reference = "test" + self.assertEqual(tx._get_communication(), "test") diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/views/payment_custom_templates.xml b/odoo-bringout-oca-ocb-payment_custom/payment_custom/views/payment_custom_templates.xml new file mode 100644 index 00000000..3423af52 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/views/payment_custom_templates.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + diff --git a/odoo-bringout-oca-ocb-payment_custom/payment_custom/views/payment_provider_views.xml b/odoo-bringout-oca-ocb-payment_custom/payment_custom/views/payment_provider_views.xml new file mode 100644 index 00000000..cb949023 --- /dev/null +++ b/odoo-bringout-oca-ocb-payment_custom/payment_custom/views/payment_provider_views.xml @@ -0,0 +1,52 @@ + + + + + Custom Provider Form + payment.provider + + + 32 + + + + + + + + + + + + + + + + + + code == 'custom' + + + + + +
    +
    +
    + + + + + + +
    +
    + +