mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-21 23:52:02 +02:00
add missing payment providers and iot modules for 19.0
Add 19 payment provider modules needed by the sale module:
payment_adyen, payment_aps, payment_asiapay, payment_authorize,
payment_buckaroo, payment_demo, payment_dpo, payment_flutterwave,
payment_iyzico, payment_mercado_pago, payment_mollie, payment_nuvei,
payment_paymob, payment_paypal, payment_razorpay, payment_redsys,
payment_stripe, payment_worldline, payment_xendit
Add 3 IoT modules needed for point_of_sale:
iot_base, iot_box_image, iot_drivers
Note: Stripe test API keys replaced with placeholders.
🤖 assisted by claude
This commit is contained in:
parent
3037cab43e
commit
aee3ee8bf7
1472 changed files with 194608 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
# Buckaroo
|
||||
|
||||
## Technical details
|
||||
|
||||
API: [Buckaroo Payment Engine](https://www.pronamic.nl/wp-content/uploads/2013/04/BPE-3.0-Gateway-HTML.1.02.pdf)
|
||||
version `3.0`
|
||||
|
||||
This module integrates Buckaroo using the generic payment with redirection flow based on form
|
||||
submission provided by the `payment` module.
|
||||
|
||||
## Supported features
|
||||
|
||||
- Payment with redirection flow
|
||||
|
||||
## Not implemented features
|
||||
|
||||
- Webhook notifications
|
||||
|
||||
## Module history
|
||||
|
||||
- `15.2`
|
||||
- The support for webhook notifications is added. odoo/odoo#82922
|
||||
|
||||
## Testing instructions
|
||||
|
||||
Buckaroo's hosted payment page allows to simulate payments and select the outcome without any
|
||||
payment details when selecting the payment method PayPal.
|
||||
|
|
@ -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')
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# 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.",
|
||||
'description': " ", # Non-empty string to avoid loading the README file.
|
||||
'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',
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
# 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_METHOD_CODES = {
|
||||
# Primary payment methods.
|
||||
'card',
|
||||
'ideal',
|
||||
# Brand payment methods.
|
||||
'visa',
|
||||
'mastercard',
|
||||
'amex',
|
||||
'discover',
|
||||
}
|
||||
|
||||
# Mapping of payment method codes to Buckaroo codes.
|
||||
# https://docs.buckaroo.io/docs/payment-methods
|
||||
# For each payment method check "Requests" tab and get "Services.ServiceList.Name"
|
||||
# in "Example request"
|
||||
PAYMENT_METHODS_MAPPING = {
|
||||
'alipay': 'Alipay',
|
||||
'apple_pay': 'applepay',
|
||||
'bancontact': 'bancontactmrcash',
|
||||
'belfius': 'belfius',
|
||||
'billink': 'Billink',
|
||||
'card': 'mastercard',
|
||||
'cartes_bancaires': 'CarteBancaire',
|
||||
'eps': 'eps',
|
||||
'giropay': 'GiroPay',
|
||||
'in3': 'Capayable',
|
||||
'ideal': 'ideal',
|
||||
'kbc': 'KBCPaymentButton',
|
||||
'bank_reference': 'PayByBank',
|
||||
'p24': 'Przelewy24',
|
||||
'paypal': 'paypal',
|
||||
'poste_pay': 'PostePay',
|
||||
'sepa_direct_debit': 'SepaDirectDebit',
|
||||
'sofort': 'sofortueberweisung',
|
||||
'tinka': 'Tinka',
|
||||
'trustly': 'Trustly',
|
||||
'wechat_pay': 'WeChatPay',
|
||||
'klarna': 'klarna',
|
||||
'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',
|
||||
]
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,105 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import hmac
|
||||
import pprint
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
|
||||
from odoo.addons.payment.logging import get_payment_logger
|
||||
|
||||
|
||||
_logger = get_payment_logger(__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 payment 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 payment data
|
||||
"""
|
||||
_logger.info("handling redirection from Buckaroo with data:\n%s", pprint.pformat(raw_data))
|
||||
data = self._normalize_data_keys(raw_data)
|
||||
|
||||
received_signature = data.get('brq_signature')
|
||||
tx_sudo = request.env['payment.transaction'].sudo()._search_by_reference(
|
||||
'buckaroo', data
|
||||
)
|
||||
if tx_sudo:
|
||||
self._verify_signature(raw_data, received_signature, tx_sudo)
|
||||
tx_sudo._process('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 payment 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 payment 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)
|
||||
received_signature = data.get('brq_signature')
|
||||
tx_sudo = request.env['payment.transaction'].sudo()._search_by_reference(
|
||||
'buckaroo', data
|
||||
)
|
||||
if tx_sudo:
|
||||
# Check the integrity of the payment data
|
||||
self._verify_signature(raw_data, received_signature, tx_sudo)
|
||||
tx_sudo._process('buckaroo', data)
|
||||
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_signature(payment_data, received_signature, tx_sudo):
|
||||
"""Check that the received signature matches the expected one.
|
||||
|
||||
:param dict payment_data: The payment data.
|
||||
:param str received_signature: The signature received with the payment data.
|
||||
:param payment.transaction tx_sudo: The sudoed transaction referenced by the payment data.
|
||||
:return: None
|
||||
:raise Forbidden: If the signatures don't match.
|
||||
"""
|
||||
# Check for the received signature
|
||||
if not received_signature:
|
||||
_logger.warning("Received payment data 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(
|
||||
payment_data, incoming=True
|
||||
)
|
||||
if not hmac.compare_digest(received_signature, expected_signature):
|
||||
_logger.warning("Received payment data with invalid signature")
|
||||
raise Forbidden()
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
-- disable buckaroo payment provider
|
||||
UPDATE payment_provider
|
||||
SET buckaroo_website_key = NULL,
|
||||
buckaroo_secret_key = NULL;
|
||||
|
|
@ -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>
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Mustafa Rawi <mustafa@cubexco.com>, 2019
|
||||
# Fahad Alqahtani <fahad@cloudland.sa>, 2019
|
||||
# Osama Ahmaro <osamaahmaro@gmail.com>, 2019
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 13:40+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Arabic <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/ar/>\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "لقد تم رفض الدفع (الكود %s). يرجى المحاولة مجدداً."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "معالج السداد"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "المزود"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# 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: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:22+0000\n"
|
||||
"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# 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: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Lluís Dalmau <lluis.dalmau@guifi.net>, 2018
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2018
|
||||
# Joan Ignasi Florit <jfloritmir@gmail.com>, 2018
|
||||
# Quim - eccit <quim@eccit.com>, 2018
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:32+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/ca/>\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Clau del lloc web"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "S'ha rebutjat el pagament (codi %s). Torneu-ho a provar."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Pagament de compradors"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Proveïdor"
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2019
|
||||
# trendspotter <j.podhorecky@volny.cz>, 2019
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 10:05+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Czech <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/cs/>\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n "
|
||||
"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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 "Technický kód tohoto poskytovatele plateb."
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Platební brána"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Poskytovatel"
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2019
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2019
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2019
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:08+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/da/>\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Betalingsindløser"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Udbyder"
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:41+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: German <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/de/>\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
msgid "Received data with missing transaction keys"
|
||||
msgstr "Erhaltene 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
|
||||
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 "Website-Schlüssel"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Ihre Zahlung wurde abgelehnt (Code %s). Bitte versuchen Sie es erneut."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Zahlungsanbieter"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Anbieter"
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
# 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
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-24 19:22+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Greek <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Αποδέκτης Πληρωμής"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Πάροχος"
|
||||
|
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:24+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/es/>\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Clave de sitio web"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Su pago fue rechazado (código %s). Vuelva a intentarlo."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Método de pago"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Proveedor"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
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: 2025-09-17 07:44+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/payment_buckaroo/es_419/>\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Su pago fue rechazado (código %s). Vuelva a intentarlo."
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,98 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2018
|
||||
# Marek Pontus, 2018
|
||||
# Martin Aavastik <martin@avalah.ee>, 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: Martin Aavastik <martin@avalah.ee>, 2018\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"Language: et\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
|
||||
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
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model,name:payment_buckaroo.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Makse saaja"
|
||||
|
||||
#. 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 "Maksetehing"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Varustaja"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2018\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "دریافت کننده پرداخت"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "فراهمکننده"
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Mikko Salmela <salmemik@gmail.com>, 2018
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2018
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/fi/>\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"An error occurred during processing of your payment (code %s). Please try "
|
||||
"again."
|
||||
msgstr "Maksun käsittelyssä tapahtui virhe (koodi %s). Yritä uudelleen."
|
||||
|
||||
#. 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 salainen avain"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. 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
|
||||
msgid "Received data with missing transaction keys"
|
||||
msgstr "Vastaanotetut tiedot, joista puuttuvat tapahtuma-avaimet"
|
||||
|
||||
#. 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 "Avain, jota käytetään yksinomaan Buckaroo-sivuston tunnistamiseen"
|
||||
|
||||
#. 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
|
||||
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 "Verkkosivun avain"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Maksusi hylättiin (koodi %s). Yritä uudelleen."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Maksun vastaanottaja"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Palveluntarjoaja"
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/fr/>\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Clé site web"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Votre paiement a été refusé (code %s). Veuillez réessayer."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Intermédiaire de Paiement"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Fournisseur"
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2019
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Last-Translator: Yihya Hugirat <hugirat@gmail.com>, 2019\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % "
|
||||
"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "תשלום נקלט"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "ספק"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# 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: 2025-09-11 13:58+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
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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 "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Stjecatelj plaćanja"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Davatelj "
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# krnkris, 2019
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-29 19:46+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Hungarian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/hu/>\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Fizetést lebonyolító"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Szolgáltató"
|
||||
|
|
@ -0,0 +1,110 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2017
|
||||
# Bonny Useful <bonny.useful@gmail.com>, 2017
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:34+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Website Key"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Pembayaran Anda ditolak (kode %s). Silakan coba lagi."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Acquirer pembayaran"
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2019
|
||||
# SebastianoPistore <SebastianoPistore.info@protonmail.ch>, 2019
|
||||
# Paolo Valier, 2019
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 17:29+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/it/>\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Website Key"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Il tuo pagamento è stato rifiutato (codice %s). Riprovalo."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Sistema di pagamento"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Fornitore"
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Yoshi Tashiro <tashiro@roomsfor.hk>, 2018
|
||||
# 高木正勝 <masakatsu.takagi@pro-spire.co.jp>, 2018
|
||||
# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2018
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 21:21+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/ja/>\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "支払が拒否されました(コード%s)。もう一度試して下さい。"
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "決済サービス"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "プロバイダ"
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# 최재호 <hwangtog@gmail.com>, 2018
|
||||
# Linkup <link-up@naver.com>, 2018
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:41+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Korean <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/ko/>\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "결제가 승인되지 않았습니다. (코드 %s). 다시 시도해 주세요."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "지불 취득자"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "공급자"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2019
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2019
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2019
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Lithuanian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/lt/>\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < "
|
||||
"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 :"
|
||||
" n % 1 != 0 ? 2: 3);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model,name:payment_buckaroo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Mokėjimo paslaugos tiekėjas"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Mokėjimo surinkėjas"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Tiekėjas"
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"Language: lv\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 != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,110 @@
|
|||
# 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: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2019\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Төлбөрийн хэрэгсэл"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Үйлчилгээ үзүүлэгч"
|
||||
|
|
@ -0,0 +1,93 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/nb_NO/>\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model,name:payment_buckaroo.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalingsleverandør"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model,name:payment_buckaroo.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaksjon"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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økkel"
|
||||
|
||||
#. 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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Betalingsløsning"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Tilbyder"
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2019
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-14 08:06+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Dutch <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/nl/>\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Websitesleutel"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Je betaling is geweigerd (code %s). Probeer het opnieuw."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Betalingsprovider"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Provider"
|
||||
|
|
@ -0,0 +1,99 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 19.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-11 13:58+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Dariusz Żbikowski <darek@krokus.com.pl>, 2019
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2019
|
||||
# Maja Stawicka <mjstwck@wp.pl>, 2019
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 10:05+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Polish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/pl/>\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && ("
|
||||
"n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
||||
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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 "Tajny klucz Buckaroo"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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 "Tajny 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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Beneficjent płatności"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Dostawca"
|
||||
|
|
@ -0,0 +1,105 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 18:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/pt/>\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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 ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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 do pagamento"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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 ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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 "Chave do site"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Seu pagamento foi recusado (código %s). Tente novamente."
|
||||
|
|
@ -0,0 +1,117 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Mateus Lopes <mateus1@gmail.com>, 2019
|
||||
# Luiz Carlos de Lima <luiz.carlos@akretion.com.br>, 2019
|
||||
# grazziano <gra.negocia@gmail.com>, 2019
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
# "Maitê Dietze (madi)" <madi@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-23 09:40+0000\n"
|
||||
"Last-Translator: \"Maitê Dietze (madi)\" <madi@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/payment_buckaroo/pt_BR/>\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Seu pagamento foi recusado (código %s). Tente novamente."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Método de Pagamento"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Fornecedor"
|
||||
|
|
@ -0,0 +1,100 @@
|
|||
# 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: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
||||
"2:1));\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:41+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/ru/>\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || ("
|
||||
"n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Ваш платеж был отклонен (код %s). Пожалуйста, попробуйте еще раз."
|
||||
|
||||
#~ msgid "No transaction found matching reference %s."
|
||||
#~ msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s."
|
||||
|
||||
#~ msgid "Unknown status code: %s"
|
||||
#~ msgstr "Неизвестный код состояния: %s"
|
||||
|
|
@ -0,0 +1,97 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2018
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2018
|
||||
# Miroslav Fic <mirko.fic@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: Miroslav Fic <mirko.fic@gmail.com>, 2018\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model,name:payment_buckaroo.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Príjemca platby "
|
||||
|
||||
#. 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 "Platobná transakcia"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Poskytovateľ"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,104 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:37+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/sl/>\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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 "Skrivni 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 ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,92 @@
|
|||
# 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
|
||||
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
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,106 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:24+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Serbian (Latin script) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/payment_buckaroo/sr_Latn/>\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"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"An error occurred during processing of your payment (code %s). Please try "
|
||||
"again."
|
||||
msgstr ""
|
||||
"Došlo je do greške tokom obrade vaše uplate (code %s). Molim vas pokušajte "
|
||||
"ponovo."
|
||||
|
||||
#. 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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Kristoffer Grundström <kristoffer.grundstrom1983@gmail.com>, 2018
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2018
|
||||
# Daniel Forslund <daniel.forslund@gmail.com>, 2018
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:11+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/sv/>\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"An error occurred during processing of your payment (code %s). Please try "
|
||||
"again."
|
||||
msgstr ""
|
||||
"Ett fel inträffade under behandlingen av din betalning (kod %s). Vänligen "
|
||||
"försök igen."
|
||||
|
||||
#. 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 "Buckaroos hemliga nyckel"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
msgid "Received data with missing transaction keys"
|
||||
msgstr "Mottagen data med saknade transaktionsnycklar"
|
||||
|
||||
#. 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 ""
|
||||
"Den nyckel som används enbart för att identifiera webbplatsen med Buckaroo"
|
||||
|
||||
#. 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
|
||||
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 "Webbplatsnyckel"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Din betalning avvisades (kod %s). Vänligen försök igen."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Betalväxel"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Leverantör"
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 21:35+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/th/>\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "การชำระเงินของคุณถูกปฏิเสธ (รหัส %s) กรุณาลองใหม่อีกครั้ง"
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "ผู้รับชำระ"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "ผู้ให้บริการ"
|
||||
|
|
@ -0,0 +1,114 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2019
|
||||
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2019
|
||||
# Martin Trigaux, 2019
|
||||
# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2019
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 02:36+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/tr/>\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. 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
|
||||
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
|
||||
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 "Web Site Anahtarı"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "Ödemeniz reddedildi (code %s). Lütfen tekrar deneyin."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Ödeme Alıcısı"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Sağlayıcı"
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2019\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
|
||||
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
|
||||
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
|
||||
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "Платіжний еквайєр"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Провайдер"
|
||||
|
|
@ -0,0 +1,115 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2019
|
||||
# Duy BQ <duybq86@gmail.com>, 2019
|
||||
# Dung Nguyen Thi <dungnt@trobz.com>, 2019
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 04:41+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Vietnamese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_buckaroo/vi/>\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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 "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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
msgid "Received data with missing transaction keys"
|
||||
msgstr "Dữ liệu đã nhận bị thiếu 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 "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
|
||||
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 "Khoá trang web"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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."
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "NCC dịch vụ Thanh toán"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "Nhà cung cấp"
|
||||
|
|
@ -0,0 +1,113 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# liAnGjiA <liangjia@qq.com>, 2019
|
||||
# inspur qiuguodong <qiuguodong@inspur.com>, 2019
|
||||
# "Tiffany Chang (tic)" <tic@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 15:27+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Chinese (Simplified Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/payment_buckaroo/zh_Hans/>\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. 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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "您的付款被拒绝(代码%s)。请再试一次。"
|
||||
|
||||
#~ msgid "Payment Acquirer"
|
||||
#~ msgstr "付款收单单位"
|
||||
|
||||
#~ msgid "Provider"
|
||||
#~ msgstr "供应商"
|
||||
|
|
@ -0,0 +1,112 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_buckaroo
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~18.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-09-11 13:58+0000\n"
|
||||
"PO-Revision-Date: 2025-09-16 08:10+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Chinese (Traditional Han script) <https://translate.odoo.com/"
|
||||
"projects/odoo-19/payment_buckaroo/zh_Hant/>\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12.2\n"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#. odoo-python
|
||||
#: code:addons/payment_buckaroo/models/payment_transaction.py:0
|
||||
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
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: payment_buckaroo
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
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
|
||||
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
|
||||
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
|
||||
msgid "Your payment was refused (code %s). Please try again."
|
||||
msgstr "你的付款被拒絕(代碼:%s)。請再試一次。"
|
||||
|
||||
#~ msgid "No transaction found matching reference %s."
|
||||
#~ msgstr "沒有找到匹配參考 %s 的交易。"
|
||||
|
||||
#~ msgid "Unknown status code: %s"
|
||||
#~ msgstr "不明狀態代碼:%s"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import payment_provider
|
||||
from . import payment_transaction
|
||||
|
|
@ -0,0 +1,96 @@
|
|||
# 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',
|
||||
copy=False,
|
||||
)
|
||||
buckaroo_secret_key = fields.Char(
|
||||
string="Buckaroo Secret Key",
|
||||
required_if_provider='buckaroo',
|
||||
copy=False,
|
||||
groups='base.group_system',
|
||||
)
|
||||
|
||||
# === COMPUTE METHODS ===#
|
||||
|
||||
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
|
||||
|
||||
# === CRUD METHODS ===#
|
||||
|
||||
def _get_default_payment_method_codes(self):
|
||||
""" Override of `payment` to return the default payment method codes. """
|
||||
self.ensure_one()
|
||||
if self.code != 'buckaroo':
|
||||
return super()._get_default_payment_method_codes()
|
||||
return const.DEFAULT_PAYMENT_METHOD_CODES
|
||||
|
||||
# === BUSINESS METHODS === #
|
||||
|
||||
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()
|
||||
|
|
@ -0,0 +1,109 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import _, api, models
|
||||
from odoo.tools import urls
|
||||
|
||||
from odoo.addons.payment.logging import get_payment_logger
|
||||
from odoo.addons.payment_buckaroo import const
|
||||
from odoo.addons.payment_buckaroo.controllers.main import BuckarooController
|
||||
|
||||
|
||||
_logger = get_payment_logger(__name__)
|
||||
|
||||
|
||||
class PaymentTransaction(models.Model):
|
||||
_inherit = 'payment.transaction'
|
||||
|
||||
def _get_specific_rendering_values(self, processing_values):
|
||||
""" Override of payment to return 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
|
||||
"""
|
||||
if self.provider_code != 'buckaroo':
|
||||
return super()._get_specific_rendering_values(processing_values)
|
||||
|
||||
return_url = urls.urljoin(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
|
||||
|
||||
@api.model
|
||||
def _extract_reference(self, provider_code, payment_data):
|
||||
"""Override of `payment` to extract the reference from the payment data."""
|
||||
if provider_code != 'buckaroo':
|
||||
return super()._extract_reference(provider_code, payment_data)
|
||||
return payment_data.get('brq_invoicenumber')
|
||||
|
||||
def _extract_amount_data(self, payment_data):
|
||||
"""Override of `payment` to extract the amount and currency from the payment data."""
|
||||
if self.provider_code != 'buckaroo':
|
||||
return super()._extract_amount_data(payment_data)
|
||||
|
||||
amount = payment_data.get('brq_amount')
|
||||
currency_code = payment_data.get('brq_currency')
|
||||
return {
|
||||
'amount': float(amount),
|
||||
'currency_code': currency_code,
|
||||
}
|
||||
|
||||
def _apply_updates(self, payment_data):
|
||||
"""Override of `payment` to update the transaction based on the payment data."""
|
||||
if self.provider_code != 'buckaroo':
|
||||
return super()._apply_updates(payment_data)
|
||||
|
||||
# Update the provider reference.
|
||||
transaction_keys = payment_data.get('brq_transactions')
|
||||
if not transaction_keys:
|
||||
self._set_error(_("Received data with missing transaction keys"))
|
||||
return
|
||||
# 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]
|
||||
|
||||
# Update the payment method.
|
||||
payment_method_code = payment_data.get('brq_payment_method')
|
||||
payment_method = self.env['payment.method']._get_from_code(
|
||||
payment_method_code, mapping=const.PAYMENT_METHODS_MAPPING
|
||||
)
|
||||
self.payment_method_id = payment_method or self.payment_method_id
|
||||
|
||||
# Update the payment state.
|
||||
status_code = int(payment_data.get('brq_statuscode') or 0)
|
||||
if status_code in const.STATUS_CODES_MAPPING['pending']:
|
||||
self._set_pending()
|
||||
elif status_code in const.STATUS_CODES_MAPPING['done']:
|
||||
self._set_done()
|
||||
elif status_code in const.STATUS_CODES_MAPPING['cancel']:
|
||||
self._set_canceled()
|
||||
elif status_code in const.STATUS_CODES_MAPPING['refused']:
|
||||
self._set_error(_("Your payment was refused (code %s). Please try again.", status_code))
|
||||
elif status_code in const.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 %s.",
|
||||
status_code, self.reference
|
||||
)
|
||||
self._set_error(_("Unknown status code: %s.", status_code))
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 779 B |
|
|
@ -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 |
|
|
@ -0,0 +1,4 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_buckaroo
|
||||
|
|
@ -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_payment_data = {
|
||||
'brq_payment': 'ABCDEF0123456789ABCDEF0123456789',
|
||||
'brq_payment_method': 'paypal',
|
||||
'brq_statuscode': '190', # confirmed
|
||||
'brq_statusmessage': 'Transaction successfully processed',
|
||||
'brq_invoicenumber': cls.reference,
|
||||
'brq_amount': str(cls.amount),
|
||||
'brq_currency': cls.currency.name,
|
||||
'brq_timestamp': '2022-01-01 12:00:00',
|
||||
'brq_transactions': '0123456789ABCDEF0123456789ABCDEF',
|
||||
'brq_signature': '5d389aa4f563cd99666a2e6bef79da3d4a32eb50',
|
||||
}
|
||||
|
||||
cls.async_payment_data = {
|
||||
'brq_transactions': '0123456789ABCDEF0123456789ABCDEF',
|
||||
'brq_transaction_method': 'paypal',
|
||||
'brq_statuscode': '190', # confirmed
|
||||
'brq_statusmessage': 'Transaction successfully processed',
|
||||
'brq_invoicenumber': cls.reference,
|
||||
'brq_amount': str(cls.amount),
|
||||
'brq_currency': cls.currency.name,
|
||||
'brq_timestamp': '2022-01-01 12:00:00',
|
||||
'brq_transaction_type': 'V010',
|
||||
'brq_signature': 'fa3444e135c366a1d2660adb406fb47efdc28130',
|
||||
}
|
||||
|
|
@ -0,0 +1,131 @@
|
|||
# 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):
|
||||
payment_data = BuckarooController._normalize_data_keys(self.sync_payment_data)
|
||||
tx = self._create_transaction(flow='redirect')
|
||||
tx._process('buckaroo', payment_data)
|
||||
self.assertEqual(tx.state, 'done')
|
||||
self.assertEqual(tx.provider_reference, payment_data.get('brq_transactions'))
|
||||
tx._process('buckaroo', payment_data)
|
||||
self.assertEqual(tx.state, 'done', 'Buckaroo: validation did not put tx into done state')
|
||||
self.assertEqual(tx.provider_reference, payment_data.get('brq_transactions'))
|
||||
|
||||
self.reference = 'Test Transaction 2'
|
||||
tx = self._create_transaction(flow='redirect')
|
||||
payment_data = BuckarooController._normalize_data_keys(dict(
|
||||
self.sync_payment_data,
|
||||
brq_invoicenumber=self.reference,
|
||||
brq_statuscode='2',
|
||||
brq_signature='b8e54e26b2b5a5e697b8ed5085329ea712fd48b2',
|
||||
))
|
||||
self.env['payment.transaction']._process('buckaroo', payment_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_signature'
|
||||
):
|
||||
self._make_http_post_request(url, data=self.async_payment_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_signature'
|
||||
) as signature_check_mock, patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction._process'
|
||||
):
|
||||
self._make_http_post_request(url, data=self.async_payment_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_signature,
|
||||
self.async_payment_data,
|
||||
self.async_payment_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_signature, self.async_payment_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_signature, self.async_payment_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",
|
||||
)
|
||||
|
|
@ -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>
|
||||
|
|
@ -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…
Add table
Add a link
Reference in a new issue