Начальное наполнение
This commit is contained in:
parent
de677d964a
commit
c04aa438a5
14
__init__.py
Normal file
14
__init__.py
Normal file
@ -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')
|
19
__manifest__.py
Normal file
19
__manifest__.py
Normal file
@ -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',
|
||||
}
|
57
const.py
Normal file
57
const.py
Normal file
@ -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',
|
||||
]
|
3
controllers/__init__.py
Normal file
3
controllers/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
111
controllers/main.py
Normal file
111
controllers/main.py
Normal file
@ -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()
|
4
data/neutralize.sql
Normal file
4
data/neutralize.sql
Normal file
@ -0,0 +1,4 @@
|
||||
-- disable buckaroo payment provider
|
||||
UPDATE payment_provider
|
||||
SET buckaroo_website_key = NULL,
|
||||
buckaroo_secret_key = NULL;
|
9
data/payment_provider_data.xml
Normal file
9
data/payment_provider_data.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="payment.payment_provider_buckaroo" model="payment.provider">
|
||||
<field name="code">buckaroo</field>
|
||||
<field name="redirect_form_view_id" ref="redirect_form"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
97
i18n/af.po
Normal file
97
i18n/af.po
Normal file
@ -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 ""
|
97
i18n/am.po
Normal file
97
i18n/am.po
Normal file
@ -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 ""
|
102
i18n/ar.po
Normal file
102
i18n/ar.po
Normal file
@ -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). يرجى المحاولة مجدداً. "
|
97
i18n/az.po
Normal file
97
i18n/az.po
Normal file
@ -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 ""
|
105
i18n/bg.po
Normal file
105
i18n/bg.po
Normal file
@ -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 <marabo2000@gmail.com>, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Turhan Aydin <taydin@unionproject.eu>, 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 <taydin@unionproject.eu>, 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 ""
|
100
i18n/bs.po
Normal file
100
i18n/bs.po
Normal file
@ -0,0 +1,100 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 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ć <bluesoft83@gmail.com>, 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 ""
|
108
i18n/ca.po
Normal file
108
i18n/ca.po
Normal file
@ -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 <odoo@rgbconsulting.com>, 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."
|
104
i18n/cs.po
Normal file
104
i18n/cs.po
Normal file
@ -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 ""
|
103
i18n/da.po
Normal file
103
i18n/da.po
Normal file
@ -0,0 +1,103 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# lhmflexerp <lhm@flexerp.dk>, 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 ""
|
107
i18n/de.po
Normal file
107
i18n/de.po
Normal file
@ -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."
|
101
i18n/el.po
Normal file
101
i18n/el.po
Normal file
@ -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 <goutoudis@gmail.com>, 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 <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 ""
|
97
i18n/en_GB.po
Normal file
97
i18n/en_GB.po
Normal file
@ -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 ""
|
107
i18n/es.po
Normal file
107
i18n/es.po
Normal file
@ -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."
|
104
i18n/es_419.po
Normal file
104
i18n/es_419.po
Normal file
@ -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."
|
97
i18n/es_BO.po
Normal file
97
i18n/es_BO.po
Normal file
@ -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 ""
|
97
i18n/es_CL.po
Normal file
97
i18n/es_CL.po
Normal file
@ -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 ""
|
97
i18n/es_CO.po
Normal file
97
i18n/es_CO.po
Normal file
@ -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 ""
|
97
i18n/es_CR.po
Normal file
97
i18n/es_CR.po
Normal file
@ -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 ""
|
97
i18n/es_DO.po
Normal file
97
i18n/es_DO.po
Normal file
@ -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 ""
|
97
i18n/es_EC.po
Normal file
97
i18n/es_EC.po
Normal file
@ -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 ""
|
99
i18n/es_PA.po
Normal file
99
i18n/es_PA.po
Normal file
@ -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 ""
|
97
i18n/es_PE.po
Normal file
97
i18n/es_PE.po
Normal file
@ -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 ""
|
97
i18n/es_PY.po
Normal file
97
i18n/es_PY.po
Normal file
@ -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 ""
|
97
i18n/es_VE.po
Normal file
97
i18n/es_VE.po
Normal file
@ -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 ""
|
106
i18n/et.po
Normal file
106
i18n/et.po
Normal file
@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Aavastik <martin@avalah.ee>, 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 ""
|
97
i18n/eu.po
Normal file
97
i18n/eu.po
Normal file
@ -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 ""
|
103
i18n/fa.po
Normal file
103
i18n/fa.po
Normal file
@ -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 ""
|
104
i18n/fi.po
Normal file
104
i18n/fi.po
Normal file
@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: 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 ""
|
97
i18n/fo.po
Normal file
97
i18n/fo.po
Normal file
@ -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 ""
|
104
i18n/fr.po
Normal file
104
i18n/fr.po
Normal file
@ -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."
|
97
i18n/fr_CA.po
Normal file
97
i18n/fr_CA.po
Normal file
@ -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 ""
|
97
i18n/gl.po
Normal file
97
i18n/gl.po
Normal file
@ -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 ""
|
97
i18n/gu.po
Normal file
97
i18n/gu.po
Normal file
@ -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 ""
|
106
i18n/he.po
Normal file
106
i18n/he.po
Normal file
@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# ExcaliberX <excaliberx@gmail.com>, 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 ""
|
104
i18n/hr.po
Normal file
104
i18n/hr.po
Normal file
@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Bole <bole@dajmi5.com>, 2019
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2019
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 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 ""
|
105
i18n/hu.po
Normal file
105
i18n/hu.po
Normal file
@ -0,0 +1,105 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# krnkris, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tamás Németh <ntomasz81@gmail.com>, 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 ""
|
103
i18n/id.po
Normal file
103
i18n/id.po
Normal file
@ -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."
|
101
i18n/is.po
Normal file
101
i18n/is.po
Normal file
@ -0,0 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Bjorn Ingvarsson <boi@exigo.is>, 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 <boi@exigo.is>, 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 ""
|
106
i18n/it.po
Normal file
106
i18n/it.po
Normal file
@ -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."
|
102
i18n/ja.po
Normal file
102
i18n/ja.po
Normal file
@ -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)。もう一度試して下さい。"
|
97
i18n/ka.po
Normal file
97
i18n/ka.po
Normal file
@ -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 ""
|
97
i18n/kab.po
Normal file
97
i18n/kab.po
Normal file
@ -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 ""
|
97
i18n/km.po
Normal file
97
i18n/km.po
Normal file
@ -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 ""
|
102
i18n/ko.po
Normal file
102
i18n/ko.po
Normal file
@ -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). 다시 시도해 주세요."
|
97
i18n/lb.po
Normal file
97
i18n/lb.po
Normal file
@ -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 ""
|
97
i18n/lo.po
Normal file
97
i18n/lo.po
Normal file
@ -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 ""
|
103
i18n/lt.po
Normal file
103
i18n/lt.po
Normal file
@ -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 <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: 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 ""
|
104
i18n/lv.po
Normal file
104
i18n/lv.po
Normal file
@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21: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 ""
|
97
i18n/mk.po
Normal file
97
i18n/mk.po
Normal file
@ -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 ""
|
102
i18n/mn.po
Normal file
102
i18n/mn.po
Normal file
@ -0,0 +1,102 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 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 ""
|
101
i18n/nb.po
Normal file
101
i18n/nb.po
Normal file
@ -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 ""
|
97
i18n/ne.po
Normal file
97
i18n/ne.po
Normal file
@ -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 ""
|
106
i18n/nl.po
Normal file
106
i18n/nl.po
Normal file
@ -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."
|
98
i18n/payment_buckaroo.pot
Normal file
98
i18n/payment_buckaroo.pot
Normal file
@ -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 ""
|
102
i18n/pl.po
Normal file
102
i18n/pl.po
Normal file
@ -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 ""
|
102
i18n/pt.po
Normal file
102
i18n/pt.po
Normal file
@ -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 ""
|
104
i18n/pt_BR.po
Normal file
104
i18n/pt_BR.po
Normal file
@ -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."
|
97
i18n/ro.po
Normal file
97
i18n/ro.po
Normal file
@ -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 ""
|
108
i18n/ru.po
Normal file
108
i18n/ru.po
Normal file
@ -0,0 +1,108 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21: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). Пожалуйста, попробуйте еще раз."
|
102
i18n/sk.po
Normal file
102
i18n/sk.po
Normal file
@ -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 ""
|
104
i18n/sl.po
Normal file
104
i18n/sl.po
Normal file
@ -0,0 +1,104 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 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 ""
|
97
i18n/sq.po
Normal file
97
i18n/sq.po
Normal file
@ -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 ""
|
104
i18n/sr.po
Normal file
104
i18n/sr.po
Normal file
@ -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 <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21: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 ""
|
97
i18n/sr@latin.po
Normal file
97
i18n/sr@latin.po
Normal file
@ -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 ""
|
105
i18n/sv.po
Normal file
105
i18n/sv.po
Normal file
@ -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 <kim.asplund@gmail.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 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 ""
|
105
i18n/th.po
Normal file
105
i18n/th.po
Normal file
@ -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) กรุณาลองใหม่อีกครั้ง"
|
107
i18n/tr.po
Normal file
107
i18n/tr.po
Normal file
@ -0,0 +1,107 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 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ş <ertugrulg@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: 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."
|
105
i18n/uk.po
Normal file
105
i18n/uk.po
Normal file
@ -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). Спробуйте ще раз."
|
105
i18n/vi.po
Normal file
105
i18n/vi.po
Normal file
@ -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."
|
103
i18n/zh_CN.po
Normal file
103
i18n/zh_CN.po
Normal file
@ -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)。请再试一次。"
|
103
i18n/zh_TW.po
Normal file
103
i18n/zh_TW.po
Normal file
@ -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)。請再試一次。"
|
4
models/__init__.py
Normal file
4
models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import payment_provider
|
||||
from . import payment_transaction
|
85
models/payment_provider.py
Normal file
85
models/payment_provider.py
Normal file
@ -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
|
113
models/payment_transaction.py
Normal file
113
models/payment_transaction.py
Normal file
@ -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))
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 779 B |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M43.105 50h.972v-3.182h1.108V46H42v.818h1.105V50Zm2.775 0h.858v-2.547h.053L47.663 50h.555l.871-2.547h.056V50H50v-4h-1.108l-.924 2.714h-.05L46.99 46h-1.11v4Z" fill="#D1D5DB"/><path d="M31.894 21.692H18.548l6.924 15.123 6.422-15.123ZM4 4h6.297l5.727 12.304h18.264L39.703 4H46L27.552 46h-4.348L4 4Z" fill="#CDD905"/></svg>
|
After Width: | Height: | Size: 412 B |
4
tests/__init__.py
Normal file
4
tests/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_buckaroo
|
45
tests/common.py
Normal file
45
tests/common.py
Normal file
@ -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',
|
||||
}
|
142
tests/test_buckaroo.py
Normal file
142
tests/test_buckaroo.py
Normal file
@ -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",
|
||||
)
|
20
views/payment_buckaroo_templates.xml
Normal file
20
views/payment_buckaroo_templates.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="redirect_form">
|
||||
<form t-att-action="api_url" method="post">
|
||||
<input type="hidden" name="Brq_websitekey" t-att-value="Brq_websitekey"/>
|
||||
<input type="hidden" name="Brq_amount" t-att-value="Brq_amount"/>
|
||||
<input type="hidden" name="Brq_currency" t-att-value="Brq_currency"/>
|
||||
<input type="hidden" name="Brq_invoicenumber" t-att-value="Brq_invoicenumber"/>
|
||||
<input type="hidden" name="Brq_signature" t-att-value="Brq_signature"/>
|
||||
<input t-if="Brq_culture" type="hidden" name="Brq_culture" t-att-value="Brq_culture"/>
|
||||
<!-- URLs -->
|
||||
<input type="hidden" name="Brq_return" t-att-value="Brq_return"/>
|
||||
<input type="hidden" name="Brq_returncancel" t-att-value="Brq_returncancel"/>
|
||||
<input type="hidden" name="Brq_returnerror" t-att-value="Brq_returnerror"/>
|
||||
<input type="hidden" name="Brq_returnreject" t-att-value="Brq_returnreject"/>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
</odoo>
|
18
views/payment_provider_views.xml
Normal file
18
views/payment_provider_views.xml
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_provider_form" model="ir.ui.view">
|
||||
<field name="name">Buckaroo Provider Form</field>
|
||||
<field name="model">payment.provider</field>
|
||||
<field name="inherit_id" ref="payment.payment_provider_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<group name="provider_credentials" position='inside'>
|
||||
<group invisible="code != 'buckaroo'">
|
||||
<field name="buckaroo_website_key" required="code == 'buckaroo' and state != 'disabled'"/>
|
||||
<field name="buckaroo_secret_key" string="Secret Key" required="code == 'buckaroo' and state != 'disabled'" password="True"/>
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user