diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e55c047 --- /dev/null +++ b/__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, 'buckaroo') + + +def uninstall_hook(env): + reset_payment_provider(env, 'buckaroo') diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..3ceb25e --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,19 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Payment Provider: Buckaroo', + 'version': '2.0', + 'category': 'Accounting/Payment Providers', + 'sequence': 350, + 'summary': "A Dutch payment provider covering several countries in Europe.", + 'depends': ['payment'], + 'data': [ + 'views/payment_buckaroo_templates.xml', + 'views/payment_provider_views.xml', + + 'data/payment_provider_data.xml', + ], + 'post_init_hook': 'post_init_hook', + 'uninstall_hook': 'uninstall_hook', + 'license': 'LGPL-3', +} diff --git a/const.py b/const.py new file mode 100644 index 0000000..7957bd0 --- /dev/null +++ b/const.py @@ -0,0 +1,57 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# The codes of the payment methods to activate when Buckaroo is activated. +DEFAULT_PAYMENT_METHODS_CODES = [ + # Primary payment methods. + 'card', + 'ideal', + # Brand payment methods. + 'visa', + 'mastercard', + 'amex', + 'discover', +] + +# Mapping of payment method codes to Buckaroo codes. +PAYMENT_METHODS_MAPPING = { + 'alipay': 'Alipay', + 'apple_pay': 'applepay', + 'bancontact': 'bancontactmrcash', + 'billink': 'Billink', + 'in3': 'Capayable', + 'kbc': 'KBCPaymentButton', + 'bank_reference': 'PayByBank', + 'p24': 'Przelewy24', + 'sepa_direct_debit': 'SepaDirectDebit', + 'sofort': 'sofortueberweisung', + 'tinka': 'Tinka', + 'trustly': 'Trustly', + 'wechat_pay': 'WeChatPay', + 'klarna': 'klarnakp', + 'afterpay_riverty': 'afterpay', +} + +# Mapping of transaction states to Buckaroo status codes. +# See https://www.pronamic.nl/wp-content/uploads/2013/04/BPE-3.0-Gateway-HTML.1.02.pdf for the +# exhaustive list of status codes. +STATUS_CODES_MAPPING = { + 'pending': (790, 791, 792, 793), + 'done': (190,), + 'cancel': (890, 891), + 'refused': (690,), + 'error': (490, 491, 492,), +} + +# The currencies supported by Buckaroo, in ISO 4217 format. +# See https://support.buckaroo.eu/frequently-asked-questions +# Last seen online: 7 November 2022. +SUPPORTED_CURRENCIES = [ + 'EUR', + 'GBP', + 'PLN', + 'DKK', + 'NOK', + 'SEK', + 'CHF', + 'USD', +] diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..80ee4da --- /dev/null +++ b/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/controllers/main.py b/controllers/main.py new file mode 100644 index 0000000..21331d5 --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,111 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import hmac +import logging +import pprint + +from werkzeug.exceptions import Forbidden + +from odoo import http +from odoo.exceptions import ValidationError +from odoo.http import request + +_logger = logging.getLogger(__name__) + + +class BuckarooController(http.Controller): + _return_url = '/payment/buckaroo/return' + _webhook_url = '/payment/buckaroo/webhook' + + @http.route( + _return_url, type='http', auth='public', methods=['POST'], csrf=False, save_session=False + ) + def buckaroo_return_from_checkout(self, **raw_data): + """ Process the notification data sent by Buckaroo after redirection from checkout. + + The route is flagged with `save_session=False` to prevent Odoo from assigning a new session + to the user if they are redirected to this route with a POST request. Indeed, as the session + cookie is created without a `SameSite` attribute, some browsers that don't implement the + recommended default `SameSite=Lax` behavior will not include the cookie in the redirection + request from the payment provider to Odoo. As the redirection to the '/payment/status' page + will satisfy any specification of the `SameSite` attribute, the session of the user will be + retrieved and with it the transaction which will be immediately post-processed. + + :param dict raw_data: The un-formatted notification data + """ + _logger.info("handling redirection from Buckaroo with data:\n%s", pprint.pformat(raw_data)) + data = self._normalize_data_keys(raw_data) + + # Check the integrity of the notification + received_signature = data.get('brq_signature') + tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data( + 'buckaroo', data + ) + self._verify_notification_signature(raw_data, received_signature, tx_sudo) + + # Handle the notification data + tx_sudo._handle_notification_data('buckaroo', data) + return request.redirect('/payment/status') + + @http.route(_webhook_url, type='http', auth='public', methods=['POST'], csrf=False) + def buckaroo_webhook(self, **raw_data): + """ Process the notification data sent by Buckaroo to the webhook. + + See https://www.pronamic.nl/wp-content/uploads/2013/04/BPE-3.0-Gateway-HTML.1.02.pdf. + + :param dict raw_data: The un-formatted notification data + :return: An empty string to acknowledge the notification + :rtype: str + """ + _logger.info("notification received from Buckaroo with data:\n%s", pprint.pformat(raw_data)) + data = self._normalize_data_keys(raw_data) + try: + # Check the integrity of the notification + received_signature = data.get('brq_signature') + tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data( + 'buckaroo', data + ) + self._verify_notification_signature(raw_data, received_signature, tx_sudo) + + # Handle the notification data + tx_sudo._handle_notification_data('buckaroo', data) + except ValidationError: # Acknowledge the notification to avoid getting spammed + _logger.exception("unable to handle the notification data; skipping to acknowledge") + return '' + + @staticmethod + def _normalize_data_keys(data): + """ Set all keys of a dictionary to lower-case. + + As Buckaroo parameters names are case insensitive, we can convert everything to lower-case + to easily detected the presence of a parameter by checking the lower-case key only. + + :param dict data: The dictionary whose keys must be set to lower-case + :return: A copy of the original data with all keys set to lower-case + :rtype: dict + """ + return {key.lower(): val for key, val in data.items()} + + @staticmethod + def _verify_notification_signature(notification_data, received_signature, tx_sudo): + """ Check that the received signature matches the expected one. + + :param dict notification_data: The notification data + :param str received_signature: The signature received with the notification data + :param recordset tx_sudo: The sudoed transaction referenced by the notification data, as a + `payment.transaction` record + :return: None + :raise: :class:`werkzeug.exceptions.Forbidden` if the signatures don't match + """ + # Check for the received signature + if not received_signature: + _logger.warning("received notification with missing signature") + raise Forbidden() + + # Compare the received signature with the expected signature computed from the data + expected_signature = tx_sudo.provider_id._buckaroo_generate_digital_sign( + notification_data, incoming=True + ) + if not hmac.compare_digest(received_signature, expected_signature): + _logger.warning("received notification with invalid signature") + raise Forbidden() diff --git a/data/neutralize.sql b/data/neutralize.sql new file mode 100644 index 0000000..cbcac1e --- /dev/null +++ b/data/neutralize.sql @@ -0,0 +1,4 @@ +-- disable buckaroo payment provider +UPDATE payment_provider + SET buckaroo_website_key = NULL, + buckaroo_secret_key = NULL; diff --git a/data/payment_provider_data.xml b/data/payment_provider_data.xml new file mode 100644 index 0000000..1dc6e9d --- /dev/null +++ b/data/payment_provider_data.xml @@ -0,0 +1,9 @@ + + + + + buckaroo + + + + diff --git a/i18n/af.po b/i18n/af.po new file mode 100644 index 0000000..c722c95 --- /dev/null +++ b/i18n/af.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/am.po b/i18n/am.po new file mode 100644 index 0000000..895e854 --- /dev/null +++ b/i18n/am.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..1e14705 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "حدث خطأ أثناء معالجة هذا الدفع (الكود %s). يرجى المحاولة مجدداً. " + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "المفتاح السري لـ Buckaroo " + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "رمز " + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "لم يتم العثور على معاملة تطابق المرجع %s. " + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "مزود الدفع " + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "تم استلام البيانات دون مفاتيح المعاملة " + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "المفتاح السري " + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "المفتاح مُستخدم فقط لتعريف الموقع الإلكتروني مع Buckaroo " + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "الكود التقني لمزود الدفع هذا. " + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "كود الحالة غير المعروفة: %s " + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "مفتاح الموقع الإلكتروني " + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "لقد تم رفض الدفع (الكود %s). يرجى المحاولة مجدداً. " diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..28e7ecc --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+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_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..dcba3ce --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# aleksandar ivanov, 2023 +# Maria Boyadjieva , 2023 +# Albena Mincheva , 2023 +# Turhan Aydin , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Turhan Aydin , 2024\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не е открита транзакция, съответстваща с референция %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Доставчик на разплащания" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Таен ключ" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..a6786ba --- /dev/null +++ b/i18n/bs.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Boško Stojaković , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+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" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..d5bd484 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2023 +# Guspy12, 2023 +# RGB Consulting , 2023 +# Ivan Espinola, 2023 +# marcescu, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: marcescu, 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"S'ha produït un error en processar el pagament (codi %s). Torneu-ho a " +"provar." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Clau secreta de Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Codi" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "No s'ha trobat cap transacció que coincideixi amb la referència %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Proveïdor de pagament" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Dades rebudes amb claus de transacció que falten" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Clau secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "La clau utilitzada únicament per identificar el lloc web amb Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.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_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Codi d'estat desconegut:%s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Clau del lloc web" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "S'ha rebutjat el pagament (codi %s). Torneu-ho a provar." diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..a2e08d0 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Ivana Bartonkova, 2023 +# Wil Odoo, 2023 +# Jiří Podhorecký, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Jiří Podhorecký, 2023\n" +"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Nebyla nalezena žádná transakce odpovídající odkazu %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Poskytovatel platby" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Tajný klíč" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..0412922 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# lhmflexerp , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Betalingsudbyder" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Hemmelig nøgle" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..58d8de0 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Bei der Verarbeitung Ihrer Zahlung ist ein Fehler aufgetreten (Code %s). " +"Bitte versuchen Sie es erneut." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Geheimer Schlüssel von Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Keine Transaktion gefunden, die der Referenz %s entspricht." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Zahlungsanbieter" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Empfangene Daten mit fehlenden Transaktionsschlüsseln" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Geheimer Schlüssel" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"Der Schlüssel, der ausschließlich zur Identifizierung der Website bei " +"Buckaroo verwendet wird" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Der technische Code dieses Zahlungsanbieters." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Unbekannter Statuscode: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Website-Schlüssel" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" +"Ihre Zahlung wurde abgelehnt (Code %s). Bitte versuchen Sie es erneut." diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..2f670d4 --- /dev/null +++ b/i18n/el.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Kostas Goutoudis , 2018\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Αποδέκτης Πληρωμής" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Πάροχος" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/en_GB.po b/i18n/en_GB.po new file mode 100644 index 0000000..f075c44 --- /dev/null +++ b/i18n/en_GB.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..a0b3ab3 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# Larissa Manderfeld, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Larissa Manderfeld, 2024\n" +"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Ocurrió un error durante el procesamiento de su pago (código %s). Vuelva a " +"intentarlo." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Clave secreta de Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" +"No se ha encontrado ninguna transacción que coincida con la referencia %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Datos recibidos sin claves de transacción" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Clave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"La clave utilizada únicamente para identificar el sitio web con Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.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_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Código de estado desconocido: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Clave de sitio web" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Su pago fue rechazado (código %s). Vuelva a intentarlo." diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..b072f76 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_419\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Ocurrió un error al procesar su pago (código %s). Vuelva a intentarlo." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Clave secreta de Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "No se encontró ninguna transacción que coincida con la referencia %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Se recibieron datos sin claves de transacción" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Clave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"La clave que se utiliza solo para identificar el sitio web con Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.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_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Código de estado desconocido: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Clave del sitio web" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Su pago fue rechazado (código %s). Vuelva a intentarlo." diff --git a/i18n/es_BO.po b/i18n/es_BO.po new file mode 100644 index 0000000..47ff120 --- /dev/null +++ b/i18n/es_BO.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"Language: es_BO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_CL.po b/i18n/es_CL.po new file mode 100644 index 0000000..9791577 --- /dev/null +++ b/i18n/es_CL.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_CO.po b/i18n/es_CO.po new file mode 100644 index 0000000..8fb3f44 --- /dev/null +++ b/i18n/es_CO.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_CR.po b/i18n/es_CR.po new file mode 100644 index 0000000..c1b645d --- /dev/null +++ b/i18n/es_CR.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_DO.po b/i18n/es_DO.po new file mode 100644 index 0000000..441f4c3 --- /dev/null +++ b/i18n/es_DO.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_EC.po b/i18n/es_EC.po new file mode 100644 index 0000000..0113160 --- /dev/null +++ b/i18n/es_EC.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_PA.po b/i18n/es_PA.po new file mode 100644 index 0000000..2026473 --- /dev/null +++ b/i18n/es_PA.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2015-09-19 08:17+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/language/es_PA/)\n" +"Language: es_PA\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_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_PE.po b/i18n/es_PE.po new file mode 100644 index 0000000..99c4f7d --- /dev/null +++ b/i18n/es_PE.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_PY.po b/i18n/es_PY.po new file mode 100644 index 0000000..6a39603 --- /dev/null +++ b/i18n/es_PY.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/es_VE.po b/i18n/es_VE.po new file mode 100644 index 0000000..5275fdb --- /dev/null +++ b/i18n/es_VE.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..feb9c9b --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Aavastik , 2023 +# Martin Trigaux, 2023 +# Leaanika Randmets, 2023 +# Marek Pontus, 2023 +# Anna, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anna, 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kood" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Makseteenuse pakkuja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Antud makseteenuse pakkuja tehniline kood." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/eu.po b/i18n/eu.po new file mode 100644 index 0000000..cd2bbf9 --- /dev/null +++ b/i18n/eu.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..0a6908c --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# odooers ir, 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "کد" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "سرویس دهنده پرداخت" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..f324d79 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Veikko Väätäjä , 2023 +# Jarmo Kortetjärvi , 2023 +# Ossi Mantylahti , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ossi Mantylahti , 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Koodi" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Viitettä %s vastaavaa tapahtumaa ei löytynyt." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Maksupalveluntarjoaja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Salainen avain" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Tämän maksupalveluntarjoajan tekninen koodi." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/fo.po b/i18n/fo.po new file mode 100644 index 0000000..3b07fd7 --- /dev/null +++ b/i18n/fo.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"Language: fo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..8a3bcb5 --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Une erreur est survenue lors du traitement de votre paiement (code %s). " +"Veuillez réessayer." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Clé secrète Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Aucune transaction ne correspond à la référence %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Fournisseur de paiement" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction de paiement" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Données reçues avec clés de transaction manquantes" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Clé secrète" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "La clé uniquement utilisée pour identifier le site web avec Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Le code technique de ce fournisseur de paiement." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Code de statut inconnu : %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Clé site web" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Votre paiement a été refusé (code %s). Veuillez réessayer." diff --git a/i18n/fr_CA.po b/i18n/fr_CA.po new file mode 100644 index 0000000..2df9402 --- /dev/null +++ b/i18n/fr_CA.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/gl.po b/i18n/gl.po new file mode 100644 index 0000000..5c1cd3c --- /dev/null +++ b/i18n/gl.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..d1b9ee8 --- /dev/null +++ b/i18n/gu.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2018-08-02 09:56+0000\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..db3a3de --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# ZVI BLONDER , 2023 +# Martin Trigaux, 2023 +# Ha Ketem , 2023 +# ExcaliberX , 2023 +# david danilov, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: david danilov, 2023\n" +"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "קוד" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "לא נמצאה עסקה המתאימה למספר האסמכתא %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "מפתח סודי" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..ba252eb --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Bole , 2019 +# Vladimir Olujić , 2019 +# Karolina Tonković , 2019 +# Tina Milas, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Tina Milas, 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_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Stjecatelj plaćanja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Davatelj " + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..c71453f --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# krnkris, 2023 +# gezza , 2023 +# Martin Trigaux, 2023 +# Tamás Németh , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tamás Németh , 2023\n" +"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Fizetési szolgáltató" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Titkos kulcs" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..1c3004b --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Error terjadi pada pemrosesan pembayaran Anda (kode %s). Silakan coba lagi." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo Secret Key" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Tidak ada transaksi dengan referensi %s yang cocok." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Penyedia Pembayaran" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi pembayaran" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Menerima data tanpa transaction key " + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Secret Key" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "Key hanya digunakan untuk mengidentifikasi website dengan Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kode teknis penyedia pembayaran ini." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Kode status tidak diketahui: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Website Key" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Pembayaran Anda ditolak (kode %s). Silakan coba lagi." diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..2bb0343 --- /dev/null +++ b/i18n/is.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Bjorn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+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" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..ebafb04 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Si è verificato un errore durante l'elaborazione di questo pagamento (codice" +" %s). Riprovalo più tardi." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo Secret Key" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Codice" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Nessuna transazione trovata corrispondente al riferimento %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Fornitore di pagamenti" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Dati ricevuti con chiavi di transazione mancanti" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Chiave segreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"La chiave utilizzata esclusivamente per identificare il sito web con " +"Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Codice tecnico del fornitore di pagamenti." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Codice di stato sconosciuto: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Website Key" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Il tuo pagamento è stato rifiutato (codice %s). Riprovalo." diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..18636f4 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "支払処理中にエラーが発生しました(コード %s) 。再度試して下さい。" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckarooシークレットキー" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "コード" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "参照に一致する取引が見つかりません%s。" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "決済プロバイダー" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "取引キーが欠落しているデータを受信しました" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "シークレットキー" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "Buckarooのウェブサイトを識別するためにのみ使用されるID" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "この決済プロバイダーのテクニカルコード。" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "不明なステータスコード: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "ウェブサイトキー" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "支払が拒否されました(コード%s)。もう一度試して下さい。" diff --git a/i18n/ka.po b/i18n/ka.po new file mode 100644 index 0000000..5f15f09 --- /dev/null +++ b/i18n/ka.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"Language: ka\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/kab.po b/i18n/kab.po new file mode 100644 index 0000000..b5398ff --- /dev/null +++ b/i18n/kab.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"Language: kab\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..462278e --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..9c668c8 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "결제를 처리하는 중 오류가 발생했습니다. (코드 %s) 다시 시도해 주세요." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo 보안 키" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "코드" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "%s 참조와 일치하는 거래 항목이 없습니다." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "결제대행업체" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "지불 거래" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "트랜잭션 키가 누락된 데이터가 수신되었습니다." + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "비밀 키" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "Buckaroo에서 웹사이트를 식별하는 데 사용되는 키입니다." + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "이 결제대행업체의 기술 코드입니다." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "알 수 없는 상태 코드: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "웹사이트 키" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "결제가 승인되지 않았습니다. (코드 %s). 다시 시도해 주세요." diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..3149142 --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/lo.po b/i18n/lo.po new file mode 100644 index 0000000..5257bca --- /dev/null +++ b/i18n/lo.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..7f6a52e --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2023 +# Linas Versada , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Linas Versada , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kodas" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Slaptas raktas" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..7cb9a28 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Arnis Putniņš , 2023 +# Armīns Jeltajevs , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kods" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Maksājumu sniedzējs" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksājuma darījums" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/mk.po b/i18n/mk.po new file mode 100644 index 0000000..e5e6176 --- /dev/null +++ b/i18n/mk.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..ffc7496 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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: 2022-06-09 14:05+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_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Төлбөрийн хэрэгсэл" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..8834ef4 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsløsning" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Tilbyder" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/ne.po b/i18n/ne.po new file mode 100644 index 0000000..8a45ae4 --- /dev/null +++ b/i18n/ne.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"Language: ne\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..1292533 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Er is een fout opgetreden tijdens het verwerken van de betaling (code %s ). " +"Probeer het opnieuw." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo geheime sleutel" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Geen transactie gevonden die overeenkomt met referentie %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Betaalprovider" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Gegevens ontvangen met ontbrekende transactiesleutels" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Geheime sleutel" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"De sleutel die uitsluitend wordt gebruikt om de website te identificeren met" +" Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "De technische code van deze betaalprovider." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Onbekende statuscode: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Websitesleutel" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Je betaling is geweigerd (code %s). Probeer het opnieuw." diff --git a/i18n/payment_buckaroo.pot b/i18n/payment_buckaroo.pot new file mode 100644 index 0000000..ff8e838 --- /dev/null +++ b/i18n/payment_buckaroo.pot @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 21: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_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..db0ad85 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Nie znaleziono transakcji pasującej do referencji %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Dostawca Płatności" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Sekretny klucz" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kod techniczny tego dostawcy usług płatniczych." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..07e2df6 --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Chave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..f8950e2 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Ocorreu um erro durante o processamento do seu pagamento (código %s). Tente " +"novamente." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo – Chave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Nenhuma transação encontrada com a referência %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Provedor de serviços de pagamento" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do pagamento" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Dados recebidos sem chaves de transação" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Chave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "A chave usada exclusivamente para identificar o site com o Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "O código técnico deste provedor de pagamento." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Código de status desconhecido: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Chave do site" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Seu pagamento foi recusado (código %s). Tente novamente." diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..8e0a827 --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+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_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..3a314d9 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2023 +# ILMIR , 2023 +# Irina Fedulova , 2023 +# Wil Odoo, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2024\n" +"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Во время обработки вашего платежа произошла ошибка (код %s). Пожалуйста, " +"попробуйте снова." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Секретный ключ Букару" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Поставщик платежей" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "платеж" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Полученные данные с отсутствующими ключами транзакции" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Секретный ключ" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"Ключ, используемый исключительно для идентификации веб-сайта с Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технический код данного провайдера платежей." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Неизвестный код состояния: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Ключ веб-сайта" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Ваш платеж был отклонен (код %s). Пожалуйста, попробуйте еще раз." diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..76ccfd6 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..870a6ad --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Matjaz Mozetic , 2023 +# Tomaž Jug , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Oznaka" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Ponudnik plačil" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/sq.po b/i18n/sq.po new file mode 100644 index 0000000..4c050ed --- /dev/null +++ b/i18n/sq.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"Language: sq\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..a808340 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2023 +# Dragan Vukosavljevic , 2023 +# コフスタジオ, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "No transaction found matching reference %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Provajder plaćanja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Tajni ključ" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "The technical code of this payment provider." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..880c7c9 --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-06-09 14:05+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "An error occurred during processing of your payment (code %s). Please try again." +msgstr "" + +#. module: payment_buckaroo +#: model:account.payment.method,name:payment_buckaroo.payment_method_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_acquirer_form +msgid "Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..7b39d90 --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2023 +# Kim Asplund , 2023 +# Anders Wallenquist , 2023 +# Lasse L, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Lasse L, 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Ingen transaktion hittades som matchar referensen %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Betalningsleverantör" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Hemlig nyckel" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Den tekniska koden för denna betalningsleverantör." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..147ce1d --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# Rasareeyar Lappiam, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Rasareeyar Lappiam, 2024\n" +"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"เกิดข้อผิดพลาดระหว่างการประมวลผลการชำระเงินของคุณ (รหัส %s) " +"กรุณาลองใหม่อีกครั้ง" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "รหัสลับ Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "โค้ด" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "ไม่พบธุรกรรมที่ตรงกับการอ้างอิง %s" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "ผู้ให้บริการชำระเงิน" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "ธุรกรรมสำหรับการชำระเงิน" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "ได้รับข้อมูลโดยไม่มีรหัสธุรกรรม" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "คีย์ลับ" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "รหัสที่ใช้ในการระบุเว็บไซต์กับ Buckaroo แต่เพียงผู้เดียว" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "ไม่ทราบรหัสสถานะ: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "รหัสเว็บไซต์" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "การชำระเงินของคุณถูกปฏิเสธ (รหัส %s) กรุณาลองใหม่อีกครั้ง" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..41b67ca --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Ayhan KIZILTAN , 2023 +# Murat Kaplan , 2023 +# Ediz Duman , 2023 +# Martin Trigaux, 2023 +# Umur Akın , 2023 +# Ertuğrul Güreş , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ertuğrul Güreş , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "Ödemeniz işlenirken bir hata oluştu (code %s). Lütfen tekrar deneyin." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo Gizli Anahtar" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Referans %s eşleşen bir işlem bulunamadı." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Ödeme Sağlayıcı" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "İşlem anahtarları eksik olan alınan veriler" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Gizli Şifre" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "Yalnızca web sitesini Buckaroo ile tanımlamak için kullanılan anahtar" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.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_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Bilinmeyen durum kodu: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Web Site Anahtarı" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Ödemeniz reddedildi (code %s). Lütfen tekrar deneyin." diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..f9861d6 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Під час обробки вашого платежу виникла помилка (код %s). Спробуйте ще раз." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Секретний ключ Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не знайдено жодної транзакції, що відповідає референсу %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Провайдер платежу" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Отримані дані з відсутніми ключами транзакції" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Секретний ключ" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "" +"Ключ, який використовується виключно для ідентифікації веб-сайту з Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технічний код цього провайдера платежу." + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Невідомий код статусу: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Ключ веб-сайту" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Ваш платіж було відхилено (код %s). Спробуйте ще раз." diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..84c83b1 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# Thi Huong Nguyen, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Thi Huong Nguyen, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "" +"Đã xảy ra lỗi trong quá trình xử lý khoản thanh toán của bạn (mã %s). Vui " +"lòng thử lại." + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Mã khoá bí mật Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "Mã" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Không tìm thấy giao dịch nào khớp với mã %s." + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "Nhà cung cấp dịch vụ thanh toán" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "Dữ liệu đã nhận bị thiếu mã khoá giao dịch." + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "Mã khóa bí mật" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "Mã khoá chỉ được sử dụng để xác định trang web với Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.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_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "Mã trạng thái không xác định: %s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "Mã khoá trang web" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "Khoản thanh toán của bạn đã bị từ chối (mã %s). Vui lòng thử lại." diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..eb654f9 --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# Chloe Wang, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Chloe Wang, 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "在处理您的付款过程中发生了一个错误(代码%s)。请再试一次。" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo 密匙" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "代码" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "没有发现与参考文献%s相匹配的交易。" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "收到的数据中缺少交易密钥" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "密钥" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "仅仅用于识别网站与Buckaroo的关键" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "该支付提供商的技术代码。" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "未知状态代码:%s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "网站密钥" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "您的付款被拒绝(代码%s)。请再试一次。" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..54633ff --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Wil Odoo, 2023 +# Tony Ng, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Tony Ng, 2024\n" +"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during processing of your payment (code %s). Please try " +"again." +msgstr "處理付款過程中,發生錯誤(代碼:%s)。請再試一次。" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_provider__code__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_secret_key +msgid "Buckaroo Secret Key" +msgstr "Buckaroo 密鑰" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code +msgid "Code" +msgstr "程式碼" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "沒有找到匹配參考 %s 的交易。" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing transaction keys" +msgstr "收到的數據中缺漏交易密鑰" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.payment_provider_form +msgid "Secret Key" +msgstr "密鑰" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "The key solely used to identify the website with Buckaroo" +msgstr "只用於向 Buckaroo 識別該網站的密鑰" + +#. module: payment_buckaroo +#: model:ir.model.fields,help:payment_buckaroo.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "此付款服務商的技術代碼。" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Unknown status code: %s" +msgstr "不明狀態代碼:%s" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__buckaroo_website_key +msgid "Website Key" +msgstr "網站密鑰" + +#. module: payment_buckaroo +#. odoo-python +#: code:addons/payment_buckaroo/models/payment_transaction.py:0 +#, python-format +msgid "Your payment was refused (code %s). Please try again." +msgstr "你的付款被拒絕(代碼:%s)。請再試一次。" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..08dfb8a --- /dev/null +++ b/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/models/payment_provider.py b/models/payment_provider.py new file mode 100644 index 0000000..611ca6d --- /dev/null +++ b/models/payment_provider.py @@ -0,0 +1,85 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from hashlib import sha1 + +from werkzeug import urls + +from odoo import fields, models + +from odoo.addons.payment_buckaroo import const + + +class PaymentProvider(models.Model): + _inherit = 'payment.provider' + + code = fields.Selection( + selection_add=[('buckaroo', "Buckaroo")], ondelete={'buckaroo': 'set default'}) + buckaroo_website_key = fields.Char( + string="Website Key", help="The key solely used to identify the website with Buckaroo", + required_if_provider='buckaroo') + buckaroo_secret_key = fields.Char( + string="Buckaroo Secret Key", required_if_provider='buckaroo', groups='base.group_system') + + def _get_supported_currencies(self): + """ Override of `payment` to return the supported currencies. """ + supported_currencies = super()._get_supported_currencies() + if self.code == 'buckaroo': + supported_currencies = supported_currencies.filtered( + lambda c: c.name in const.SUPPORTED_CURRENCIES + ) + return supported_currencies + + def _buckaroo_get_api_url(self): + """ Return the API URL according to the state. + + Note: self.ensure_one() + + :return: The API URL + :rtype: str + """ + self.ensure_one() + if self.state == 'enabled': + return 'https://checkout.buckaroo.nl/html/' + else: + return 'https://testcheckout.buckaroo.nl/html/' + + def _buckaroo_generate_digital_sign(self, values, incoming=True): + """ Generate the shasign for incoming or outgoing communications. + + :param dict values: The values used to generate the signature + :param bool incoming: Whether the signature must be generated for an incoming (Buckaroo to + Odoo) or outgoing (Odoo to Buckaroo) communication. + :return: The shasign + :rtype: str + """ + if incoming: + # Incoming communication values must be URL-decoded before checking the signature. The + # key 'brq_signature' must be ignored. + items = [ + (k, urls.url_unquote_plus(v)) for k, v in values.items() + if k.lower() != 'brq_signature' + ] + else: + items = values.items() + # Only use items whose key starts with 'add_', 'brq_', or 'cust_' (case insensitive) + filtered_items = [ + (k, v) for k, v in items + if any(k.lower().startswith(key_prefix) for key_prefix in ('add_', 'brq_', 'cust_')) + ] + # Sort parameters by lower-cased key. Not upper-case because ord('A') < ord('_') < ord('a'). + sorted_items = sorted(filtered_items, key=lambda pair: pair[0].lower()) + # Build the signing string by concatenating all parameters + sign_string = ''.join(f'{k}={v or ""}' for k, v in sorted_items) + # Append the pre-shared secret key to the signing string + sign_string += self.buckaroo_secret_key + # Calculate the SHA-1 hash over the signing string + return sha1(sign_string.encode('utf-8')).hexdigest() + + # === BUSINESS METHODS ===# + + def _get_default_payment_method_codes(self): + """ Override of `payment` to return the default payment method codes. """ + default_codes = super()._get_default_payment_method_codes() + if self.code != 'buckaroo': + return default_codes + return const.DEFAULT_PAYMENT_METHODS_CODES diff --git a/models/payment_transaction.py b/models/payment_transaction.py new file mode 100644 index 0000000..4e1829b --- /dev/null +++ b/models/payment_transaction.py @@ -0,0 +1,113 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import logging + +from werkzeug import urls + +from odoo import _, api, models +from odoo.exceptions import ValidationError + +from odoo.addons.payment_buckaroo.const import STATUS_CODES_MAPPING +from odoo.addons.payment_buckaroo.controllers.main import BuckarooController + +_logger = logging.getLogger(__name__) + + +class PaymentTransaction(models.Model): + _inherit = 'payment.transaction' + + def _get_specific_rendering_values(self, processing_values): + """ Override of payment to return Buckaroo-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 + """ + res = super()._get_specific_rendering_values(processing_values) + if self.provider_code != 'buckaroo': + return res + + return_url = urls.url_join(self.provider_id.get_base_url(), BuckarooController._return_url) + rendering_values = { + 'api_url': self.provider_id._buckaroo_get_api_url(), + 'Brq_websitekey': self.provider_id.buckaroo_website_key, + 'Brq_amount': self.amount, + 'Brq_currency': self.currency_id.name, + 'Brq_invoicenumber': self.reference, + # Include all 4 URL keys despite they share the same value as they are part of the sig. + 'Brq_return': return_url, + 'Brq_returncancel': return_url, + 'Brq_returnerror': return_url, + 'Brq_returnreject': return_url, + } + if self.partner_lang: + rendering_values['Brq_culture'] = self.partner_lang.replace('_', '-') + rendering_values['Brq_signature'] = self.provider_id._buckaroo_generate_digital_sign( + rendering_values, incoming=False + ) + return rendering_values + + def _get_tx_from_notification_data(self, provider_code, notification_data): + """ Override of payment to find the transaction based on Buckaroo data. + + :param str provider_code: The code of the provider that handled the transaction + :param dict notification_data: The normalized notification data sent by the provider + :return: The transaction if found + :rtype: recordset of `payment.transaction` + :raise: ValidationError if the data match no transaction + """ + tx = super()._get_tx_from_notification_data(provider_code, notification_data) + if provider_code != 'buckaroo' or len(tx) == 1: + return tx + + reference = notification_data.get('brq_invoicenumber') + tx = self.search([('reference', '=', reference), ('provider_code', '=', 'buckaroo')]) + if not tx: + raise ValidationError( + "Buckaroo: " + _("No transaction found matching reference %s.", reference) + ) + + return tx + + def _process_notification_data(self, notification_data): + """ Override of payment to process the transaction based on Buckaroo data. + + Note: self.ensure_one() + + :param dict notification_data: The normalized notification data sent by the provider + :return: None + :raise: ValidationError if inconsistent data were received + """ + super()._process_notification_data(notification_data) + if self.provider_code != 'buckaroo': + return + + transaction_keys = notification_data.get('brq_transactions') + if not transaction_keys: + raise ValidationError("Buckaroo: " + _("Received data with missing transaction keys")) + # BRQ_TRANSACTIONS can hold multiple, comma-separated, tx keys. In practice, it holds only + # one reference. So we split for semantic correctness and keep the first transaction key. + self.provider_reference = transaction_keys.split(',')[0] + + status_code = int(notification_data.get('brq_statuscode') or 0) + if status_code in STATUS_CODES_MAPPING['pending']: + self._set_pending() + elif status_code in STATUS_CODES_MAPPING['done']: + self._set_done() + elif status_code in STATUS_CODES_MAPPING['cancel']: + self._set_canceled() + elif status_code in STATUS_CODES_MAPPING['refused']: + self._set_error(_("Your payment was refused (code %s). Please try again.", status_code)) + elif status_code in STATUS_CODES_MAPPING['error']: + self._set_error(_( + "An error occurred during processing of your payment (code %s). Please try again.", + status_code, + )) + else: + _logger.warning( + "received data with invalid payment status (%s) for transaction with reference %s", + status_code, self.reference + ) + self._set_error("Buckaroo: " + _("Unknown status code: %s", status_code)) diff --git a/static/description/icon.png b/static/description/icon.png new file mode 100644 index 0000000..607885b Binary files /dev/null and b/static/description/icon.png differ diff --git a/static/description/icon.svg b/static/description/icon.svg new file mode 100644 index 0000000..cda10e6 --- /dev/null +++ b/static/description/icon.svg @@ -0,0 +1 @@ + diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..9cf43f8 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,4 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import common +from . import test_buckaroo diff --git a/tests/common.py b/tests/common.py new file mode 100644 index 0000000..c4c9a31 --- /dev/null +++ b/tests/common.py @@ -0,0 +1,45 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.payment.tests.common import PaymentCommon + + +class BuckarooCommon(PaymentCommon): + + @classmethod + def setUpClass(cls): + super().setUpClass() + + cls.buckaroo = cls._prepare_provider('buckaroo', update_values={ + 'buckaroo_website_key': 'dummy', + 'buckaroo_secret_key': 'test_key_123', + }) + + # Override defaults + cls.provider = cls.buckaroo + cls.currency = cls.currency_euro + + cls.sync_notification_data = { + 'brq_payment': 'ABCDEF0123456789ABCDEF0123456789', + 'brq_payment_method': 'paypal', + 'brq_statuscode': '190', # confirmed + 'brq_statusmessage': 'Transaction successfully processed', + 'brq_invoicenumber': cls.reference, + 'brq_amount': '1111.11', + 'brq_currency': 'USD', + 'brq_timestamp': '2022-01-01 12:00:00', + 'brq_transactions': '0123456789ABCDEF0123456789ABCDEF', + 'brq_signature': '5d389aa4f563cd99666a2e6bef79da3d4a32eb50', + } + + cls.async_notification_data = { + 'brq_transactions': '0123456789ABCDEF0123456789ABCDEF', + 'brq_transaction_method': 'paypal', + 'brq_statuscode': '190', # confirmed + 'brq_statusmessage': 'Transaction successfully processed', + 'brq_invoicenumber': cls.reference, + 'brq_amount': '1111.11', + 'brq_currency': 'USD', + 'brq_timestamp': '2022-01-01 12:00:00', + 'brq_transaction_type': 'V010', + 'brq_signature': '9ba976c3a6a3d2d1b5b58d3aa8c2c6fe269a9c27', + } diff --git a/tests/test_buckaroo.py b/tests/test_buckaroo.py new file mode 100644 index 0000000..2c45a3b --- /dev/null +++ b/tests/test_buckaroo.py @@ -0,0 +1,142 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from unittest.mock import patch + +from werkzeug.exceptions import Forbidden + +from odoo.tests import tagged +from odoo.tools import mute_logger + +from odoo.addons.payment.tests.http_common import PaymentHttpCommon +from odoo.addons.payment_buckaroo.controllers.main import BuckarooController +from odoo.addons.payment_buckaroo.tests.common import BuckarooCommon + + +@tagged('post_install', '-at_install') +class BuckarooTest(BuckarooCommon, PaymentHttpCommon): + + def test_redirect_form_values(self): + self.patch(self, 'base_url', lambda: 'http://127.0.0.1:8069') + self.patch(type(self.env['base']), 'get_base_url', lambda _: 'http://127.0.0.1:8069') + + return_url = self._build_url(BuckarooController._return_url) + expected_values = { + 'Brq_websitekey': self.buckaroo.buckaroo_website_key, + 'Brq_amount': str(self.amount), + 'Brq_currency': self.currency.name, + 'Brq_invoicenumber': self.reference, + 'Brq_signature': 'dacc220c3087edcc1200a38a6db0191c823e7f69', + 'Brq_return': return_url, + 'Brq_returncancel': return_url, + 'Brq_returnerror': return_url, + 'Brq_returnreject': return_url, + 'Brq_culture': 'en-US', + } + + tx_sudo = self._create_transaction(flow='redirect') + with mute_logger('odoo.addons.payment.models.payment_transaction'): + processing_values = tx_sudo._get_processing_values() + form_info = self._extract_values_from_html_form(processing_values['redirect_form_html']) + + self.assertEqual(form_info['action'], "https://testcheckout.buckaroo.nl/html/") + self.assertDictEqual(expected_values, form_info['inputs'], + "Buckaroo: invalid inputs specified in the redirect form.") + + @mute_logger('odoo.addons.payment_buckaroo.models.payment_transaction') + def test_feedback_processing(self): + notification_data = BuckarooController._normalize_data_keys(self.sync_notification_data) + tx = self._create_transaction(flow='redirect') + tx._handle_notification_data('buckaroo', notification_data) + self.assertEqual(tx.state, 'done') + self.assertEqual(tx.provider_reference, notification_data.get('brq_transactions')) + tx._handle_notification_data('buckaroo', notification_data) + self.assertEqual(tx.state, 'done', 'Buckaroo: validation did not put tx into done state') + self.assertEqual(tx.provider_reference, notification_data.get('brq_transactions')) + + self.reference = 'Test Transaction 2' + tx = self._create_transaction(flow='redirect') + notification_data = BuckarooController._normalize_data_keys(dict( + self.sync_notification_data, + brq_invoicenumber=self.reference, + brq_statuscode='2', + brq_signature='b8e54e26b2b5a5e697b8ed5085329ea712fd48b2', + )) + self.env['payment.transaction']._handle_notification_data('buckaroo', notification_data) + self.assertEqual(tx.state, 'error') + + @mute_logger('odoo.addons.payment_buckaroo.controllers.main') + def test_webhook_notification_confirms_transaction(self): + """ Test the processing of a webhook notification. """ + tx = self._create_transaction('redirect') + url = self._build_url(BuckarooController._webhook_url) + with patch( + 'odoo.addons.payment_buckaroo.controllers.main.BuckarooController' + '._verify_notification_signature' + ): + self._make_http_post_request(url, data=self.async_notification_data) + self.assertEqual(tx.state, 'done') + + @mute_logger('odoo.addons.payment_buckaroo.controllers.main') + def test_webhook_notification_triggers_signature_check(self): + """ Test that receiving a webhook notification triggers a signature check. """ + self._create_transaction('redirect') + url = self._build_url(BuckarooController._return_url) + with patch( + 'odoo.addons.payment_buckaroo.controllers.main.BuckarooController' + '._verify_notification_signature' + ) as signature_check_mock, patch( + 'odoo.addons.payment.models.payment_transaction.PaymentTransaction' + '._handle_notification_data' + ): + self._make_http_post_request(url, data=self.async_notification_data) + self.assertEqual(signature_check_mock.call_count, 1) + + def test_accept_notification_with_valid_signature(self): + """ Test the verification of a notification with a valid signature. """ + tx = self._create_transaction('redirect') + self._assert_does_not_raise( + Forbidden, + BuckarooController._verify_notification_signature, + self.async_notification_data, + self.async_notification_data['brq_signature'], + tx, + ) + + @mute_logger('odoo.addons.payment_buckaroo.controllers.main') + def test_reject_notification_with_missing_signature(self): + """ Test the verification of a notification with a missing signature. """ + tx = self._create_transaction('redirect') + self.assertRaises( + Forbidden, + BuckarooController._verify_notification_signature, + self.async_notification_data, + None, + tx, + ) + + @mute_logger('odoo.addons.payment_buckaroo.controllers.main') + def test_reject_notification_with_invalid_signature(self): + """ Test the verification of a notification with an invalid signature. """ + tx = self._create_transaction('redirect') + self.assertRaises( + Forbidden, + BuckarooController._verify_notification_signature, + self.async_notification_data, + 'dummy', + tx, + ) + + def test_signature_is_computed_based_on_lower_case_data_keys(self): + """ Test that lower case keys are used to execute the case-insensitive sort. """ + computed_signature = self.provider._buckaroo_generate_digital_sign({ + 'brq_a': '1', + 'brq_b': '2', + 'brq_c_first': '3', + 'brq_csecond': '4', + 'brq_D': '5', + }, incoming=False) + self.assertEqual( + computed_signature, + '937cca8f486b75e93df1e9811a5ebf43357fc3f2', + msg="The signing string items should be ordered based on a lower-case copy of the keys", + ) diff --git a/views/payment_buckaroo_templates.xml b/views/payment_buckaroo_templates.xml new file mode 100644 index 0000000..1b6f5c2 --- /dev/null +++ b/views/payment_buckaroo_templates.xml @@ -0,0 +1,20 @@ + + + + + + diff --git a/views/payment_provider_views.xml b/views/payment_provider_views.xml new file mode 100644 index 0000000..0796272 --- /dev/null +++ b/views/payment_provider_views.xml @@ -0,0 +1,18 @@ + + + + + Buckaroo Provider Form + payment.provider + + + + + + + + + + + +