mirror of
https://github.com/bringout/oca-ocb-core.git
synced 2026-04-20 20: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,68 @@
|
|||
# Authorize.net
|
||||
|
||||
## Technical details
|
||||
|
||||
SDK: [Accept.js](https://developer.authorize.net/api/reference/features/acceptjs.html) version `1`
|
||||
|
||||
API: [Accept suite API](https://developer.authorize.net/api/reference/index.html) version `1`
|
||||
|
||||
This module renders a self-hosted payment form with regular (non iframe) inputs and relies on the
|
||||
Accept.js SDK to send the payment details to Authorize.net through a secure connection. The JS
|
||||
assets are loaded in JavaScript when the payment form is submitted.
|
||||
|
||||
Other communications with Authorize.net are performed via server-to-server API calls.
|
||||
|
||||
This combined solution allows the implementation of a simple direct payment flow whilst keeping the
|
||||
front-end development efforts low. As payment details are retrieved in clear but are immediately
|
||||
passed to the Accept.js SDK, the solution qualifies for SAQ A-EP.
|
||||
|
||||
## Supported features
|
||||
|
||||
- Direct payment flow
|
||||
- Tokenization with or without payment
|
||||
- Full manual capture
|
||||
- Full refunds
|
||||
|
||||
## Missing features
|
||||
|
||||
- Partial manual capture
|
||||
- Webhook notifications: not available
|
||||
|
||||
## Module history
|
||||
|
||||
- `16.1`
|
||||
- The "Authorize Currency" field is replaced by the generic "Currencies" field of `payment`.
|
||||
odoo/odoo#101018
|
||||
- `16.0`
|
||||
- Archiving a token no longer deactivates the related payment method on Authorize. odoo/odoo#93774
|
||||
- `15.4`
|
||||
- The support for full refunds is added. odoo/odoo#92279
|
||||
- `15.0`
|
||||
- Support for ACH payments is added. odoo/odoo#75289
|
||||
- `14.3`
|
||||
- The payment with redirection flow that existed alongside the direct payment flow is dropped.
|
||||
odoo/odoo#141661
|
||||
|
||||
## Testing instructions
|
||||
|
||||
An HTTPS connection is required.
|
||||
|
||||
https://developer.authorize.net/hello_world/testing_guide.html
|
||||
|
||||
## VISA
|
||||
|
||||
**Card Number**: `4111111111111111`
|
||||
|
||||
## MasterCard
|
||||
|
||||
**Card Number**: `5424000000000015`
|
||||
|
||||
## eCheck
|
||||
|
||||
**Bank Name**: whatever
|
||||
|
||||
**Name On Account**: whatever
|
||||
|
||||
**Account Number**: `123456`
|
||||
|
||||
**ABA Routing Number**: `121122676`
|
||||
|
|
@ -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, 'authorize')
|
||||
|
||||
|
||||
def uninstall_hook(env):
|
||||
reset_payment_provider(env, 'authorize')
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Payment Provider: Authorize.Net',
|
||||
'version': '2.0',
|
||||
'category': 'Accounting/Payment Providers',
|
||||
'sequence': 350,
|
||||
'summary': "An payment provider covering the US, Australia, and Canada.",
|
||||
'description': " ", # Non-empty string to avoid loading the README file.
|
||||
'depends': ['payment'],
|
||||
'data': [
|
||||
'views/payment_authorize_templates.xml',
|
||||
'views/payment_provider_views.xml',
|
||||
'views/payment_token_views.xml',
|
||||
|
||||
'data/payment_provider_data.xml',
|
||||
],
|
||||
'post_init_hook': 'post_init_hook',
|
||||
'uninstall_hook': 'uninstall_hook',
|
||||
'assets': {
|
||||
'web.assets_frontend': [
|
||||
'payment_authorize/static/src/interactions/payment_form.js',
|
||||
'payment_authorize/static/src/scss/payment_authorize.scss',
|
||||
],
|
||||
},
|
||||
'author': 'Odoo S.A.',
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
# The codes of the payment methods to activate when Authorize is activated.
|
||||
DEFAULT_PAYMENT_METHOD_CODES = {
|
||||
# Primary payment methods.
|
||||
'ach_direct_debit',
|
||||
'card',
|
||||
# Brand payment methods.
|
||||
'visa',
|
||||
'mastercard',
|
||||
'amex',
|
||||
'discover',
|
||||
}
|
||||
|
||||
# Mapping of payment method codes to Authorize codes.
|
||||
PAYMENT_METHODS_MAPPING = {
|
||||
'amex': 'americanexpress',
|
||||
'diners': 'dinersclub',
|
||||
'card': 'creditcard'
|
||||
}
|
||||
|
||||
# Mapping of payment status on Authorize side to transaction statuses.
|
||||
# See https://developer.authorize.net/api/reference/index.html#transaction-reporting-get-transaction-details.
|
||||
TRANSACTION_STATUS_MAPPING = {
|
||||
'authorized': ['authorizedPendingCapture', 'capturedPendingSettlement'],
|
||||
'captured': ['settledSuccessfully'],
|
||||
'voided': ['voided'],
|
||||
'refunded': ['refundPendingSettlement', 'refundSettledSuccessfully'],
|
||||
}
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import pprint
|
||||
|
||||
from odoo import _, http
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.http import request
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment.logging import get_payment_logger
|
||||
|
||||
|
||||
_logger = get_payment_logger(__name__)
|
||||
|
||||
|
||||
class AuthorizeController(http.Controller):
|
||||
|
||||
@http.route('/payment/authorize/payment', type='jsonrpc', auth='public')
|
||||
def authorize_payment(self, reference, partner_id, access_token, opaque_data):
|
||||
""" Make a payment request and handle the response.
|
||||
|
||||
:param str reference: The reference of the transaction
|
||||
:param int partner_id: The partner making the transaction, as a `res.partner` id
|
||||
:param str access_token: The access token used to verify the provided values
|
||||
:param dict opaque_data: The payment details obfuscated by Authorize.Net
|
||||
:return: None
|
||||
"""
|
||||
# Check that the transaction details have not been altered
|
||||
if not payment_utils.check_access_token(access_token, reference, partner_id):
|
||||
raise ValidationError(_("Received tampered payment request data."))
|
||||
|
||||
# Send the payment request to Authorize.Net.
|
||||
tx_sudo = request.env['payment.transaction'].sudo().search([('reference', '=', reference)])
|
||||
response_content = tx_sudo._authorize_create_transaction_request(opaque_data)
|
||||
|
||||
# Handle the payment request response
|
||||
_logger.info(
|
||||
"Payment request response for transaction %s:\n%s",
|
||||
reference, pprint.pformat(response_content)
|
||||
)
|
||||
tx_sudo._process('authorize', {'response': response_content})
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
-- disable authorize payment provider
|
||||
UPDATE payment_provider
|
||||
SET authorize_login = NULL,
|
||||
authorize_transaction_key = NULL,
|
||||
authorize_signature_key = NULL,
|
||||
authorize_client_key = NULL;
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="payment.payment_provider_authorize" model="payment.provider">
|
||||
<field name="code">authorize</field>
|
||||
<field name="inline_form_view_id" ref="inline_form"/>
|
||||
<field name="allow_tokenization">True</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Mustafa Rawi <mustafa@cubexco.com>, 2019
|
||||
# Akram Alfusayal <akram_ma@hotmail.com>, 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">حساب جاري شخصي</option>\n"
|
||||
" <option value=\"savings\">حساب توفير شخصي</option>\n"
|
||||
" <option value=\"businessChecking\">حساب جاري "
|
||||
"للأعمال</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "رقم مسار ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "مفتاح عميل API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "معرف تسجيل دخول API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "مفتاح توقيع API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "مفتاح معاملة واجهة برمجة التطبيقات API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "رقم الحساب"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "معرف الملف التعريفي لـ Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "نوع الحساب البنكي"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "اسم البنك"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "رمز البطاقة"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "رقم البطاقة"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "رمز"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"تعذر إحضار بيانات التاجر: \n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"تعذر جلب تفاصيل المعاملة. (كود الخطأ: %(error_code)s؛ rror_details: "
|
||||
"%(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "تاريخ الانتهاء"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"فشلت المصادقة. \n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "إنشاء مفتاح العميل"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "كيفية تلقي أموال من خلال Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "الاسم في الحساب"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "يمكن تحديد عملة واحدة فقط في حساب Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "مزود الدفع"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "كلمة سر السداد"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "معاملة السداد"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "فشلت معالجة عملية الدفع"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "بيانات طلب الدفع المستلمة المتلاعب بها."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "تعيين عملة الحساب"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "المعرف مُستخدم فقط لتعريف الحساب مع Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"مفتاح العميل العام. للإنشاء مباشرة من أودو أو من الواجهة الخلفية لـ "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "الكود التقني لمزود الدفع هذا."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"المعاملة ليست في حالة تسمح برد الأموال. (الحالة: %(status)s، التفاصيل: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"المرجع الفريد للمجموع بين الشريك/الرمز في الواجهة الخلفية لـ Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "لا يمكن تنفيذ هذا الإجراء بينما مزود الدفع معطل."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
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:21+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token plaćanja"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Lluís Dalmau <lluis.dalmau@guifi.net>, 2018
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 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 04:41+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Catalan <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Compte corrent "
|
||||
"personal</option>\n"
|
||||
" <option value=\"savings\">Compte d'estalvis "
|
||||
"personal</option>\n"
|
||||
" <option value=\"businessChecking\">Compte corrent "
|
||||
"empresarial</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Número d'encaminament ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Clau del client de l'API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID d'inici de sessió de l'API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Clau de signatura de l'API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Clau de l'API de transacció"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Número de compte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Autoritza.Identificador del perfil de xarxa"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipus de compte bancari"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nom del Banc"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Codi de targeta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Número de targeta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No s'han pogut recuperar els detalls del comerciant:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Caducitat"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No s'ha pogut autenticar.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Genera la clau del client"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Com pagar amb Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nom al compte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveïdor de pagament"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pagament"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacció de pagament"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "S'han rebut dades de sol·licitud de pagament manipulades."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Estableix la moneda del compte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "L'ID només s'utilitza per identificar el compte amb Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La clau pública del client. Per a generar directament des de Odoo o des del "
|
||||
"backend d'Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.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_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La referència única per a la combinació soci/token al backend "
|
||||
"d'Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API Client Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Transaction Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Číslo účtu"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Název banky"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Číslo karty"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovací název"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Vypršení"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Generovat klíč klienta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Jak dostat zaplaceno přes Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Poskytovatel platby"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Platební token"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platební transakce"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Zpracování platby se nezdařilo"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Technický kód tohoto poskytovatele plateb."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2019
|
||||
# Sanne Kristensen <sanne@vkdata.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:10+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Danish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API Klient nøgle"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API Login ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API Signatur nøgle"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API transaktionsnøgle"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Kontonummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Banknavn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kortnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Udløbsdato"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Generer klient nøgle"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Hvordan man bliver betalt med Authorize.net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalingsudbyder"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalingstoken"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaktion"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Behandlingen af betaling mislykkedes"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,278 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Leon Grill <leg@odoo.com>, 2019
|
||||
# Chris Egal <sodaswed@web.de>, 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Persönliches "
|
||||
"Girokonto</option>\n"
|
||||
" <option value=\"savings\">Persönliches "
|
||||
"Sparkonto</option>\n"
|
||||
" <option value=\"businessChecking\">Geschäftliches "
|
||||
"Girokonto</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA-Routing-Nummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "AP-Client-Schlüssel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API-Anmelde-ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API-Signaturschlüssel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Transaction Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Kontonummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net-Profil-ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Bankverbindungstyp"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Bankname"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Kartencode"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kartennummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Es konnten keine Händlerdetails abgerufen werden:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Die Transaktionsdetails konnten nicht abgerufen werden. (Fehlercode: "
|
||||
"%(error_code)s; error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Gültigkeit"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Authentifizierung fehlgeschlagen.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Client-Schlüssel generieren"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Wie Sie mit Authorize.Net bezahlt werden"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Name für Konto"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Pro Authorize.Net-Konto kann nur eine Währung ausgewählt werden."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Zahlungsanbieter"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Zahlungs-Token"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Zahlungstransaktion"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Zahlungsverarbeitung fehlgeschlagen"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Es wurden manipulierte Zahlungsanforderungsdaten empfangen."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Kontowährung bestimmen"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"Die ID, die ausschließlich zur Identifizierung des Kontos bei Authorize.Net "
|
||||
"verwendet wird"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Der öffentliche Client-Schlüssel. Direkt aus Odoo oder aus dem Authorize.Net-"
|
||||
"Backend zu generieren."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Der technische Code dieses Zahlungsanbieters."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Die Transaktion befindet sich nicht in einem Status, in dem sie erstattet "
|
||||
"werden kann. (Status: %(status)s, Details: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Die eindeutige Referenz für die Partner/Token-Kombination im Authorize.net "
|
||||
"Backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
"Diese Aktion kann nicht durchgeführt werden, wenn der Anbieter deaktiviert "
|
||||
"ist."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Transaction Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Αριθμός Λογαριασμού"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Όνομα Τράπεζας"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Πώς να πληρωθείτε με Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Πάροχος Πληρωμών"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Διακριτικό Πληρωμής"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Συναλλαγή Πληρωμής"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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:28+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Spanish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Cuenta corriente "
|
||||
"personal</option>\n"
|
||||
" <option value=\"savings\">Cuenta de ahorro "
|
||||
"privada</option>\n"
|
||||
" <option value=\"businessChecking\">Cuenta corriente "
|
||||
"comercial</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Número de enrutamiento ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Clave de cliente API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID de inicio de sesión de la API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Clave de firma API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Clave de la transacción API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Número de cuenta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "ID de perfil de Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipo de cuenta bancaria"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nombre del banco"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Código de la tarjeta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Número de tarjeta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No se pudieron obtener los detalles del comerciante:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"No fue posible obtener los detalles de la transacción. (Código de error: "
|
||||
"%(error_code)s; detalles del error: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Vencimiento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Error de autenticación.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Generar clave de cliente"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Cómo recibir pagos con Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nombre en cuenta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Solo puede seleccionar una moneda por cuenta de Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Error al procesar el pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Datos de solicitud de pago manipulados recibidos."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Establecer la moneda de la cuenta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "El ID utilizado únicamente para identificar la cuenta con Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La clave del cliente público. Para generar directamente desde Odoo o desde "
|
||||
"Authorize.Net backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.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_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"La transacción no está en un estado en el que se pueda reembolsar. (Estado: "
|
||||
"%(status)s, detalles: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La referencia única para la combinación de contacto y token en el backend de "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Esta acción no se puede realizar si el proveedor está deshabilitado."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# "Dylan Kiss (dyki)" <dyki@odoo.com>, 2025.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-26 08:56+0000\n"
|
||||
"PO-Revision-Date: 2025-09-17 07:45+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Spanish (Latin America) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Cheques "
|
||||
"personales</option>\n"
|
||||
" <option value=\"savings\">Ahorros personales</option>"
|
||||
"\n"
|
||||
" <option value=\"businessChecking\">Cheques de la "
|
||||
"empresa</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Número de ruta ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Clave de cliente API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID de inicio de sesión de la API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Clave de firma API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Clave de la transacción API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Número de cuenta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "ID de perfil de Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipo de cuenta bancaria"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nombre del banco"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Código de tarjeta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Número de tarjeta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"No pudimos obtener los detalles del comerciante:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"No fue posible obtener los detalles de la transacción. (Código de error: "
|
||||
"%(error_code)s; detalles del error: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Vencimiento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Error de autenticación.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Generar clave de cliente"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Cómo recibir pagos con Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nombre en la cuenta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/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_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Solo puede seleccionar una moneda por cuenta de Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Error al procesar el pago"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
"Se recibió información con el código de estado \"%(status)s\" y código de "
|
||||
"error \"%(error)s\""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Datos recibidos de solicitud de pago manipulados."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Configurar la moneda de la cuenta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "El ID que se usa solo para identificar la cuenta con Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La llave de cliente pública. Para generarla desde Odoo o el backend de "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.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_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"La transacción no está en un estado en el que se pueda reembolsar. (Estado: "
|
||||
"%(status)s, detalles: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr "La transacción no está vinculada a un token."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La referencia única para la combinación de contacto y token en el backend de "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Esta acción no se puede realizar si el proveedor está deshabilitado."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,248 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:21+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Sümboolne makse"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksetehing"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,249 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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-21 13:17+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "تراکنش پرداخت"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,277 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Mikko Salmela <salmemik@gmail.com>, 2018
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2018
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 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 15:26+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Finnish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Henkilökohtainen "
|
||||
"šekkitili</option>\n"
|
||||
" <option value=\"savings\">Henkilökohtainen "
|
||||
"säästötili</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"šekkitili</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA:n reititysnumero"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API-asiakasavain"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API-kirjautumistunnus"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API-allekirjoitusavain"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API-tapahtuma-avain"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Tilinumero"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net-profiilin tunnus"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Pankkitilin tyyppi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Pankin nimi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Kortin koodi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kortin numero"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kauppiasta ei voitu hakea tietoja:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Tapahtuman tietoja ei voitu hakea. (virhekoodi: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Voimassaolo"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Autentikointi epäonnistui.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Luo asiakasavain"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Miten saat maksun Authorize.Netin avulla"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "Tunnus"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "KK"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nimi tilillä"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Authorize.Net-tilillä voidaan valita vain yksi valuutta."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksupalveluntarjoaja"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Maksutunniste"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksutapahtuma"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Maksun käsittely epäonnistui"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Vastaanotettu väärennettyjä maksupyyntötietoja."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Aseta tilin valuutta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"Tunnus, jota käytetään ainoastaan tilin tunnistamiseen Authorize.Netissä"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Julkinen asiakasavain. Voit luoda suoraan Odoo:sta tai Authorize.Netin "
|
||||
"taustajärjestelmästä."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Tämän maksupalveluntarjoajan tekninen koodi."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Tapahtuma ei ole palautettavassa tilassa. (status: %(status)s, details: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Yhteistyökumppanin ja tunnisteen yhdistelmän yksilöllinen viite "
|
||||
"Authorize.netin taustajärjestelmässä."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
"Tätä toimintoa ei voi suorittaa, kun palveluntarjoaja on poistettu käytöstä."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,274 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Eloïse Stilmant <est@odoo.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-17 17:20+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: French <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Compte-chèques "
|
||||
"personnel</option>\n"
|
||||
" <option value=\"savings\">Compte d'épargne "
|
||||
"personnel</option>\n"
|
||||
" <option value=\"businessChecking\">Compte-chèques "
|
||||
"professionnel</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Numéro de routage ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Clé Client API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "Identifiant API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Clé de Signature API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Clé de transaction API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Numéro de compte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "ID de profil Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Type de compte bancaire"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nom de la banque"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Code de la carte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Numéro de carte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Impossible de récupérer les détails du commerçant :\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Impossible de récupérer les détails de la transaction. (code d'erreur : "
|
||||
"%(error_code)s; error_details : %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Expiration"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Échec de l'authentification.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Générer Clé Client"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Comment se faire payer avec Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nom sur le compte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Une seule devise peut être sélectionnée par le compte Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fournisseur de paiement"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Jeton de paiement"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaction"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Échec du traitement du paiement"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Réception de données de demande de paiement falsifiées."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Définir la devise du compte"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"L'identifiant uniquement utilisé pour identifier le compte avec Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La clé publique du client. À générer directement depuis Odoo ou depuis le "
|
||||
"backend d'Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Le code technique de ce fournisseur de paiement."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Le statut de la transaction ne permet pas de la rembourser. (statut "
|
||||
":%(status)s, détails : %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La référence unique pour la combinaison partenaire/jeton dans le backend "
|
||||
"d'Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Impossible d'exécuter cette action quand le fournisseur est désactivé."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "AA"
|
||||
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2019
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2019
|
||||
# שהאב חוסיין <shhab89@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: שהאב חוסיין <shhab89@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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "עסקת תשלום"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-26 08:56+0000\n"
|
||||
"PO-Revision-Date: 2024-09-26 08:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API ključ transakcije"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token plaćanja"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API tranzakciós kulcs"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Bankszámlaszám"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Bank neve"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kártya szám"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Lejárat"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fizetési szolgáltató"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Fizetési tranzakció"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,271 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# oon arfiandwi (OonID) <oon.arfiandwi@gmail.com>, 2017
|
||||
# Wahyu Setiawan <wahyusetiaaa@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 04:41+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Indonesian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Rekening Giro "
|
||||
"Pribadi</option>\n"
|
||||
" <option value=\"savings\">Tabungan Pribadi</option>\n"
|
||||
" <option value=\"businessChecking\">Rekening Giro "
|
||||
"Bisnis</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Nomor Routing ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API Client Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID Login API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API Signature Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Transaction Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Nomor Rekening"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "ID Profil Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipe Akun Bank"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nama Bank"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Kode Kartu"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Nomor Kartu"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Tidak dapat menemukan detail pedagang:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Tidak dapat menemukan detail transaksi. (kode error: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Kadaluwarsa"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Gagal untuk mengautentikasi.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Buat Client Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Cara dibayar dengan Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nama Pada Akun"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Hanya satu mata uang yang dapat dipilih oleh akun Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Penyedia Pembayaran"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token Pembayaran"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaksi pembayaran"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Pemrosesan pembayaran gagal"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Menerima data permintaan pembayaran yang diubah tanpa izin."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Tetapkan Mata Uang Akun"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"ID yang digunakan hanya untuk mengidentifikasi akun dengan Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Client key publik. Untuk membuat langsung dari Odoo atau dari Authorize.Net "
|
||||
"backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kode teknis penyedia pembayaran ini."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Transaksi tidak dalam status untuk di-refund. (status: %(status)s, detail: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr "Referensi unik untuk kombinasi partner/token di Authorize.net backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Action ini tidak dapat dilakukan selama penyedia dinonaktifkan."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:21+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# SebastianoPistore <SebastianoPistore.info@protonmail.ch>, 2019
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2019
|
||||
# Luigia Cimmino Caserta <lcc@odoo.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-17 17:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Italian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Conto corrente "
|
||||
"personale</option>\n"
|
||||
" <option value=\"savings\">Conto di risparmio</option>"
|
||||
"\n"
|
||||
" <option value=\"businessChecking\">Conto corrente "
|
||||
"aziendale</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Numero di ABA routing"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Chiave API cliente"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API Login ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Chiave di firma API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Chiave transazione API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Numero conto"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net Profile ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipo di conto bancario"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nome banca"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Codice Carta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Numero carta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Impossibile recuperare i dettagli del commerciante:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Impossibile recuperare i dettagli della transazione. (Codice errore: "
|
||||
"%(error_code)s; error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Scadenza"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Fallita l'autenticazione.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Genera chiave cliente"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Come essere pagati con Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nome sul conto"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "È possibile selezionare solo una valuta per l'account Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fornitore di pagamenti"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token di pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transazione di pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Elaborazione del pagamento non riuscita"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Ricevuto dati di richiesta di pagamento manomessi."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Impostare valuta per il conto"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"L'ID utilizzato esclusivamente per identificare il conto con Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"La chiave pubblica del cliente. Da generare direttamente da Odoo o dal "
|
||||
"backend Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Codice tecnico del fornitore di pagamenti."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Lo stato della transazione non permette di effettuare il rimborso. (Stato: "
|
||||
"%(status)s, dettagli: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Il riferimento unico per la combinazione partner/token nel backend di "
|
||||
"Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "L'azione non può essere eseguita quando il fornitore è disattivato."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "AA"
|
||||
|
|
@ -0,0 +1,268 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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:16+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Japanese <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">個人当座預金</option>\n"
|
||||
" <option value=\"savings\">個人預金口座</option>\n"
|
||||
" <option value=\"businessChecking\""
|
||||
">ビジネス当座預金</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABAルーティングナンバ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "APIクライアントキー"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "APIログインID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API署名キー"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "APIトランザクションキー"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "口座番号"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.NetプロフィールID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "銀行口座タイプ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "銀行名"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "カードコード"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "カード番号"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"加盟店の詳細を取得できませんでした:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"取引の詳細を取得できませんでした。 (エラーコード: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "有効期限"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"認証に失敗しました。\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "クライアントキーを生成する"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Authorize.Netでどうやって支払を受けるか"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "アカウント名"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Authorize.Netアカウントでは1通貨のみ選択することができます。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "決済プロバイダー"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "支払トークン"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "決済トランザクション"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "支払処理に失敗しました"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "改ざんされた支払依頼データを受信しました。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "アカウント通貨を設定"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "Authorize.Netでアカウントを識別するためにのみ使用されるID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr "公開クライアントキー。ODooからまたはAuthorize.Netバックエンドから直接生成され"
|
||||
"ます。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "この決済プロバイダーのテクニカルコード。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr "この取引はは返金可能な状態ではありません。 (ステータス: %(status)s、詳細: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr "Authorize.netバックエンドの取引先/トークンの組み合わせに対する一意の参照。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "プロバイダが無効になっている間は、この操作は実行できません。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,245 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">개인 당좌예금</option>\n"
|
||||
" <option value=\"savings\">개인 예금</option>\n"
|
||||
" <option value=\"businessChecking\">기업 "
|
||||
"당좌예금</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA 라우팅 번호"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API 클라이언트 키"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API 로그인 ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API 서명 키"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Transaction Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "계정 과목"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net 프로필 ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "은행 계좌 유형"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "은행명"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "카드 코드"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "카드 번호"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "코드"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"판매자 정보를 가져올 수 없습니다:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"거래 세부 정보를 검색할 수 없습니다. (error code: (%(error_code)s; "
|
||||
"error_details: (%(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "만료일"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"인증하지 못했습니다.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "클라이언트 키 생성"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Authorize.Net으로 지불받는 방법"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "월"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "계정 이름"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Authorize.Net 계정당 하나의 통화만 선택할 수 있습니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "결제대행업체"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "결제 토큰"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "지불 거래"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "결제 프로세스 실패"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "변조된 결제 요청 데이터가 수신되었습니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "계정 통화 설정"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "Authorize.Net에서 계정을 식별하는 데 사용되는 ID입니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr "공개 클라이언트 키입니다. Odoo 또는 Authorize.Net 백엔드에서 직접 생성할 수 "
|
||||
"있습니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "이 결제대행업체의 기술 코드입니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr "해당 거래는 환불할 수 없는 상태입니다. (상태: %(status)s, 세부 정보: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr "Authorize.net 백엔드에 있는 협력사/토큰 조합에 대한 고유 참조입니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "공급업체가 비활성화된 상태이므로 이 작업을 수행할 수 없습니다."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "년"
|
||||
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-26 08:56+0000\n"
|
||||
"PO-Revision-Date: 2024-09-26 08:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,257 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Aleksandr Jadov <a.jadov@tata.lt>, 2019
|
||||
# Martin Trigaux, 2019
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API operacijos raktas"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Sąskaitos numeris"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Banko pavadinimas"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kortelės numeris"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kodas"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Galiojimo pabaiga"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Kaip gauti mokėjimą per Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Mokėjimo paslaugos tiekėjas"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Mokėjimo raktas"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Mokėjimo operacija"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,243 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Гүйлгээний Түлхүүр"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Төлбөрийн Токен"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Төлбөрийн гүйлгээ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,239 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 18.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-09-26 08:56+0000\n"
|
||||
"PO-Revision-Date: 2024-09-26 08:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,252 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API-transaksjonsnøkkel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Kontonummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Banknavn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kortnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Utløpsdato"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Hvordan få betalt med Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalingsleverandør"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalingstoken"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaksjon"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,277 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2019
|
||||
# Yenthe Van Ginneken <yenthespam@gmail.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-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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Persoonlijke "
|
||||
"rekening</option>\n"
|
||||
" <option value=\"savings\">Persoonlijk "
|
||||
"spaargeld</option>\n"
|
||||
" <option value=\"businessChecking\">Zakelijke "
|
||||
"rekening</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA-routeringsnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API client sleutel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API-aanmeldings-ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API handtekening sleutel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API Transactiesleutel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Rekeningnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net profiel-ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Type bankrekening"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Naam bank"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Kaartcode"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kaartnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kan verkopersgegevens niet ophalen:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Kon de details van de transactie niet ophalen. (foutcode: %(error_code)s, "
|
||||
"error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Vervaldatum"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kan niet verifiëren.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Genereer client sleutel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Hoe betaald te worden met Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Naam op account"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Er kan maar één valuta worden geselecteerd per Authorize.Net account."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betaalprovider"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalingstoken"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransactie"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Betalingsverwerking mislukt"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Ontvangen van geknoeid betalingsverzoekgegevens."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Accountvaluta instellen"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"De ID die alleen wordt gebruikt om het account te identificeren bij "
|
||||
"Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"De openbare clientsleutel. Om rechtstreeks vanuit Odoo of vanuit "
|
||||
"Authorize.Net backend te genereren."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "De technische code van deze betaalprovider."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"De transactie heeft niet de status om terugbetaald te worden. (status: "
|
||||
"%(status)s, details: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"De unieke referentie voor de partner/token-combinatie in de Authorize.net-"
|
||||
"backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
"Deze actie kan niet worden uitgevoerd terwijl de provider is uitgeschakeld."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,241 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,257 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2019
|
||||
# Tomasz Leppich <t.leppich@gmail.com>, 2019
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2019
|
||||
# Radosław Biegalski <radoslaw.biegalski@openglobe.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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "klucz transakcji API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Numer konta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nazwa Banku"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Numer karty"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Wygaśnięcie"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Dostawca Płatności"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token płatności"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcja płatności"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Przetwarzanie płatności nie powiodło się"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kod techniczny tego dostawcy usług płatniczych."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "RR"
|
||||
|
|
@ -0,0 +1,266 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# "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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Verificação "
|
||||
"pessoal</option>\n"
|
||||
" <option value=\"savings\">Economias privadas</option>"
|
||||
"\n"
|
||||
" <option value=\"businessChecking\">Verificação "
|
||||
"empresarial</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Número de roteamento ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Chave do cliente da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID de login da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Chave de assinatura da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Chabe de transação da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Número da conta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net – ID do perfil"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipo de conta bancária"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nome do banco"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Código do cartão"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Número do cartão"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Não foi possível recuperar os detalhes do comerciante:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Expiração"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Falha na autenticação.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Gerar chave do cliente"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Como receber pagamentos com Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nome na conta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Só é possível selecionar uma moeda por conta do Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provedor de serviços de pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação do Pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Falha no processamento do pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Dados da solicitação de pagamento recebidos alterados."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Definir moeda da conta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "O ID usado exclusivamente para identificar a conta com o Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"A chave pública do cliente para gerar diretamente pelo Odoo ou pelo back-end "
|
||||
"do Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "O código técnico deste provedor de pagamento."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"A referência exclusiva da combinação de parceiro/token no back-end do "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Esta ação não pode ser executada enquanto o provedor está desativado."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "AA"
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# Mateus Lopes <mateus1@gmail.com>, 2019
|
||||
# Caio Leonardo Mendes de Sousa <caleozao@gmail.com>, 2019
|
||||
# grazziano <gra.negocia@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-17 17:23+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Portuguese (Brazil) <https://translate.odoo.com/projects/"
|
||||
"odoo-19/payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Verificação "
|
||||
"pessoal</option>\n"
|
||||
" <option value=\"savings\">Economias privadas</option>"
|
||||
"\n"
|
||||
" <option value=\"businessChecking\">Verificação "
|
||||
"empresarial</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Número de roteamento ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Chave do cliente da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID de login da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Chave de assinatura da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Chabe de transação da API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Número da conta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net – ID do perfil"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Tipo de conta bancária"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Nome do banco"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Código do cartão"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Número do cartão"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Não foi possível recuperar os detalhes do comerciante:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Não foi possível recuperar os detalhes da transação. (código de erro: "
|
||||
"%(error_code)s; error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Expiração"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Falha na autenticação.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Gerar chave do cliente"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Como receber pagamentos com Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Nome na conta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Só é possível selecionar uma moeda por conta do Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provedor de serviços de pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Token de pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação do Pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Falha no processamento do pagamento"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Dados da solicitação de pagamento recebidos alterados."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Definir moeda da conta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "O ID usado exclusivamente para identificar a conta com o Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"A chave pública do cliente para gerar diretamente pelo Odoo ou pelo back-end "
|
||||
"do Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "O código técnico deste provedor de pagamento."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"A transação não está em um status para ser reembolsada. (status: %(status)s, "
|
||||
"detalhes: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"A referência exclusiva da combinação de parceiro/token no back-end do "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Esta ação não pode ser executada enquanto o provedor está desativado."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "AA"
|
||||
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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 02:34+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Russian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Персональная проверка</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Персональные сбережения</"
|
||||
"option>\n"
|
||||
" <option value=\"businessChecking\">Бизнес-чекинг</"
|
||||
"option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Номер ABA маршрутизации"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Ключ клиента API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API идентификатор логина"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Ключ подписи API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Ключ транзакции API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Номер счета"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Идентификатор профиля Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Тип Банковского Счета"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Название банка"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Код карты"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Номер карты"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Не удалось получить данные о продавце:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Не удалось получить данные о транзакции. (код ошибки: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Действительно до"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Не удалось пройти аутентификацию.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Сгенерируйте ключ клиента"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Как получить оплату с помощью Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "ММ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Имя на счете"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "В аккаунте Authorize.Net может быть выбрана только одна валюта."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Поставщик платежей"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Платежный токен"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платеж"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Обработка платежа не удалась"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Получение поддельных данных запроса на оплату."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Установить валюту счета"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
"Идентификатор, используемый исключительно для идентификации аккаунта в "
|
||||
"Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Открытый ключ клиента. Генерировать непосредственно из Odoo или из бэкенда "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технический код данного провайдера платежей."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Транзакция не находится в статусе для возврата средств. (статус: %(status)s, "
|
||||
"детали: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Уникальная ссылка для комбинации партнер/токен в бэкенде Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Это действие невозможно выполнить, если провайдер отключен."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "ГГ"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Could not retrieve the transaction details. (error code: %s; "
|
||||
#~ "error_details: %s)"
|
||||
#~ msgstr ""
|
||||
#~ "Не удалось получить данные о транзакции. (код ошибки: %s; error_details: "
|
||||
#~ "%s)"
|
||||
|
||||
#~ msgid "No transaction found matching reference %s."
|
||||
#~ msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
#~ msgstr ""
|
||||
#~ "Получены данные с кодом состояния \"%(status)s\" и кодом ошибки \"%"
|
||||
#~ "(error)s\""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The transaction is not in a status to be refunded. (status: %s, details: "
|
||||
#~ "%s)"
|
||||
#~ msgstr ""
|
||||
#~ "Транзакция не находится в статусе для возврата средств. (статус: %s, "
|
||||
#~ "детали: %s)"
|
||||
|
||||
#~ msgid "The transaction is not linked to a token."
|
||||
#~ msgstr "Транзакция не привязана к токену."
|
||||
|
|
@ -0,0 +1,248 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API kľúč transakcie"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net "
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platobná transakcia"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,250 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# "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:26+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Slovenian <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Številka računa"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Naziv banke"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Številka kartice"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Oznaka"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Veljavnost"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ponudnik plačil"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Plačilni žeton"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Plačilna transakcija"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %s; error_details: "
|
||||
"%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/js/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %s, details: %s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid "The transaction is not linked to a token."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,246 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
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-21 13:17+0000\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,273 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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:38+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Swedish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Personligt "
|
||||
"checkkonto</option>\n"
|
||||
" <option value=\"savings\">Personligt "
|
||||
"sparande</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA Routingnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API-klientnyckel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API-inloggnings-ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API-signaturnyckel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Överföringsnyckel för API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Kontonummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net profil-ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Typ av bankkonto"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Bankens namn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Kortkod"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kortnummer"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kunde inte hämta information om handlaren:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Det gick inte att hämta transaktionsinformationen. (felkod:%(error_code)s; "
|
||||
"felmeddelande_detaljer: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Offertens förfallodatum"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Misslyckades med autentiseringen.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Generera klientnyckel"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Så här får du betalt med Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Namn på konto"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Endast en valuta kan väljas för ett Authorize.Net-konto."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalningsleverantör"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Betalnings-token"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalningstransaktion"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Betalningshanteringen misslyckades"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Mottagit manipulerade uppgifter om betalningsbegäran."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Ange kontovaluta"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "Det ID som endast används för att identifiera kontot med Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Den offentliga klientnyckeln. För att generera direkt från Odoo eller från "
|
||||
"Authorize.Net backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Den tekniska koden för denna betalningsleverantör."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Transaktionen är inte i en status som ska återbetalas. (status:%(status)s, "
|
||||
"detaljer: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Den unika referensen för partner/token-kombinationen i Authorize.net-backend."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Denna åtgärd kan inte utföras när leverantören är inaktiverad."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "ÅÅ"
|
||||
|
|
@ -0,0 +1,270 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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:24+0000\n"
|
||||
"Last-Translator: \"Tiffany Chang (tic)\" <tic@odoo.com>\n"
|
||||
"Language-Team: Thai <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\""
|
||||
">บัญชีเงินฝากกระแสรายวันส่วนบุคคล</option>\n"
|
||||
" <option value=\"savings\">บัญชีออมทรัพย์ส่วนบุคคล</option>"
|
||||
"\n"
|
||||
" <option value=\"businessChecking\""
|
||||
">บัญชีเงินฝากกระแสรายวันสำหรับธุรกิจ</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "หมายเลขเส้นทาง ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API รหัสลูกค้า"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API รหัสเข้าสู่ระบบ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API รหัสลายเซ็น"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API รหัสธุรกรรม"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "หมายเลขบัญชี"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net รหัสโปรไฟล์"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "ประเภทบัญชีธนาคาร"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "ชื่อธนาคาร"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "รหัสบัตร"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "หมายเลขบัตร"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "โค้ด"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"ไม่สามารถดึงรายละเอียดผู้ขายได้:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"ไม่สามารถดึงรายละเอียดธุรกรรมได้ (รหัสข้อผิดพลาด: %(error_code)s; error_details: "
|
||||
"%(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "สิ้นสุด"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"การยืนยันตัวตนล้มเหลว\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "สร้างรหัสลูกค้า"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "วิธีรับเงินกับ Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "ชื่อในบัญชี"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "สามารถเลือกได้เพียงสกุลเงินเดียวโดยบัญชี Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "ผู้ให้บริการชำระเงิน"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "โทเค็นการชำระเงิน"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "ธุรกรรมสำหรับการชำระเงิน"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "การประมวลผลการชำระเงินล้มเหลว"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "ได้รับข้อมูลคำขอการชำระเงินที่ถูกแก้ไข"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "ตั้งค่าสกุลเงินของบัญชี"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "ID ใช้เพื่อระบุบัญชีกับ Authorize.Net เท่านั้น"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"รหัสลูกค้าสาธารณะ เพื่อสร้างโดยตรงจาก Odoo หรือจากการทำงานเบื้องหลังของ Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"ธุรกรรมไม่ได้อยู่ในสถานะที่จะได้รับการคืนเงิน (สถานะ: %(status)s, รายละเอียด: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"ข้อมูลอ้างอิงเฉพาะสำหรับการรวม พาร์ทเนอร์/โทเค็น ในแบ็กเอนด์ Authorize.net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "การดำเนินการนี้ไม่สามารถทำได้ในขณะที่ผู้ให้บริการถูกปิดใช้งาน"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,276 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2019
|
||||
# Martin Trigaux, 2019
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2019
|
||||
# Ramiz Deniz Öner <deniz@denizoner.com>, 2019
|
||||
# Hüseyin Cem Aras <hcemaras@gmail.com>, 2019
|
||||
# Umur Akın <umura@projetgrup.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 02:36+0000\n"
|
||||
"Last-Translator: \"Dylan Kiss (dyki)\" <dyki@odoo.com>\n"
|
||||
"Language-Team: Turkish <https://translate.odoo.com/projects/odoo-19/"
|
||||
"payment_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Bireysel Vadesiz</option>"
|
||||
"\n"
|
||||
" <option value=\"savings\">Bireysel Vadeli</option>\n"
|
||||
" <option value=\"businessChecking\">Ticari "
|
||||
"Vadesiz</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA Yönlendirme Numarası"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API Client Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API Login ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API Signature Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API İşlem Anahtarı"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Hesap Numarası"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net Profil Kimliği"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Banka Hesap Türü"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Banka Adı"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Kart Kodu"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Kart numarası"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Satıcı ayrıntıları alınamadı:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"İşlem ayrıntıları alınamadı. (hata kodu: %(error_code)s; hata_ayrıntıları: "
|
||||
"%(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Geçerlilik Tarihi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Kimlik doğrulaması yapılamadı.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Generate Client Key"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Authorize.Net ile nasıl ödeme yapılır"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Hesaptaki Adı"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Authorize.Net hesabı yalnızca tek bir para birimi seçimine izin verir."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ödeme Sağlayıcı"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Ödeme Belirteci"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Ödeme İşlemi"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Ödeme işleme başarısız oldu"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Üzerinde oynanmış ödeme isteği verileri alındı."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Hesap Para Birimini Ayarla"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "Yalnızca hesabı Authorize.Net tanımlamak için kullanılan kimlik"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Ortak istemci anahtarı. Doğrudan Odoo'dan veya Authorize.Net arka uçtan "
|
||||
"oluşturmak için."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.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_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"İşlem, iade edilebilir bir durumda değil. (durum: %(status)s, detay: "
|
||||
"%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Authorize.net arka ucundaki ortak/belirteç kombinasyonu için benzersiz "
|
||||
"başvuru."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Bu işlem, sağlayıcı devre dışıyken gerçekleştirilemez."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Клієнтський ключ API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Ключ підпису API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Ключ транзакції API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Створити клієнтський ключ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Як отримати оплату за допомогою Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Токен оплати"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платіжна операція"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr ""
|
||||
|
|
@ -0,0 +1,272 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2019
|
||||
# Duy BQ <duybq86@gmail.com>, 2019
|
||||
# Dung Nguyen Thi <dungnt@trobz.com>, 2019
|
||||
# Chinh Chinh <trinhttp@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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">Séc cá nhân</option>\n"
|
||||
" <option value=\"savings\">Tiết kiệm cá nhân</option>"
|
||||
"\n"
|
||||
" <option value=\"businessChecking\">Séc doanh "
|
||||
"nghiệp</option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "Số định tuyến ABA"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "Khóa khách hàng API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "ID đăng nhập API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "Khoá chữ ký API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "Khóa giao dịch API"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "Số tài khoản"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "ID hồ sơ Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "Loại tài khoản ngân hàng"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "Tên ngân hàng"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "Mã thẻ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "Số thẻ"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Mã"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Không thể lấy thông tin người bán:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"Không thể truy xuất thông tin giao dịch. (mã lỗi: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "Ngày hết hạn"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Không thể xác thực.\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "Tạo khoá khách hàng"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "Cách thanh toán với Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "MM"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "Tên trên tài khoản"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "Tài khoản Authorize.Net chỉ có thể chọn một loại tiền tệ."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Nhà cung cấp dịch vụ thanh toán"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "Mã thanh toán"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Giao dịch thanh toán"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "Xử lý thanh toán không thành công"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "Dữ liệu yêu cầu thanh toán giả mạo đã nhận."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "Đặt tiền tệ tài khoản"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "ID chỉ được sử dụng để xác định tài khoản với Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr ""
|
||||
"Mã khóa khách hàng công khai. Để tạo trực tiếp từ Odoo hoặc từ back-end "
|
||||
"Authorize.Net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.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_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr ""
|
||||
"Giao dịch không nằm ở trạng thái được hoàn tiền. (trạng thái: %(status)s, "
|
||||
"thông tin: %(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr "Mã duy nhất cho kết hợp đối tác/token trong back-end Authorize.net."
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "Không thể thực hiện tác vụ này khi nhà cung cấp bị vô hiệu hóa."
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,267 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
# liAnGjiA <liangjia@qq.com>, 2019
|
||||
# keecome <7017511@qq.com>, 2019
|
||||
# inspur qiuguodong <qiuguodong@inspur.com>, 2019
|
||||
# John An <johnxan@163.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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-select\">"
|
||||
"\n"
|
||||
" <option value=\"checking\">个人支票</option>\n"
|
||||
" <option value=\"savings\">个人储蓄</option>\n"
|
||||
" <option value=\"businessChecking\">商业支票</option>"
|
||||
"\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA路由号码"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API 客户端密钥"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API 登入用户名"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API 签名密钥"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API 事务密匙"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "账号"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net Profile ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "账户类型"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "银行名称"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "卡代码"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "卡号"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "代码"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"无法获取商家的详细信息:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr "无法检索交易详情。(错误代码:%(error_code)s;error_details:%(error_message)"
|
||||
"s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "到期"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"认证失败。\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "生成客户密钥"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "如何使用 Authorize.Net 付款"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "月"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "帐户上的姓名"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "每个 Authorize.Net 账户只能选择一种币别。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "付款令牌"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "付款交易"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "付款处理失败"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "收到了被篡改的付款请求数据。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "设置账户币别"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "仅用于识别 Authorize.Net 账户的 ID"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr "公共客户密钥。直接从Odoo或从Authorize.Net后端生成。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "该支付提供商的技术代码。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr "交易并非处于可以退款的状态。(状态:%(status)s,详情:%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr "合作伙伴/令牌组合在Authorize.net后台的唯一参考。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "当提供商被禁用时,无法执行此操作。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "YY"
|
||||
|
|
@ -0,0 +1,275 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_authorize
|
||||
#
|
||||
# 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_authorize/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_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">Personal Checking</"
|
||||
"option>\n"
|
||||
" <option value=\"savings\">Personal Savings</option>\n"
|
||||
" <option value=\"businessChecking\">Business "
|
||||
"Checking</option>\n"
|
||||
" </select>"
|
||||
msgstr ""
|
||||
"<select id=\"o_authorize_account_type\" required=\"\" class=\"form-"
|
||||
"select\">\n"
|
||||
" <option value=\"checking\">個人往來</option>\n"
|
||||
" <option value=\"savings\">個人儲蓄</option>\n"
|
||||
" <option value=\"businessChecking\">商業往來</"
|
||||
"option>\n"
|
||||
" </select>"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "ABA Routing Number"
|
||||
msgstr "ABA 銀行路徑號碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid "API Client Key"
|
||||
msgstr "API 用戶端金鑰"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "API Login ID"
|
||||
msgstr "API 登入名稱"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_signature_key
|
||||
msgid "API Signature Key"
|
||||
msgstr "API 簽名金鑰"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__authorize_transaction_key
|
||||
msgid "API Transaction Key"
|
||||
msgstr "API 事務密匙"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Account Number"
|
||||
msgstr "賬戶號碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields.selection,name:payment_authorize.selection__payment_provider__code__authorize
|
||||
msgid "Authorize.Net"
|
||||
msgstr "Authorize.Net"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid "Authorize.Net Profile ID"
|
||||
msgstr "Authorize.Net 個人檔案識別碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Account Type"
|
||||
msgstr "銀行賬戶類型"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Bank Name"
|
||||
msgstr "銀行名稱"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Code"
|
||||
msgstr "卡代碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Card Number"
|
||||
msgstr "卡號碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "代碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Could not fetch merchant details:\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"未能讀取商戶詳細資料:\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; "
|
||||
"error_details: %(error_message)s)"
|
||||
msgstr ""
|
||||
"未能讀取交易詳情。(錯誤代碼:%(error_code)s;錯誤詳情 error_details:%"
|
||||
"(error_message)s)。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__display_name
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Expiration"
|
||||
msgstr "到期日"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid ""
|
||||
"Failed to authenticate.\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"身份驗證失敗。\n"
|
||||
"%s"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Generate Client Key"
|
||||
msgstr "生成用戶端金鑰"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "How to get paid with Authorize.Net"
|
||||
msgstr "如何使用 Authorize.Net 付款"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_provider__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_token__id
|
||||
#: model:ir.model.fields,field_description:payment_authorize.field_payment_transaction__id
|
||||
msgid "ID"
|
||||
msgstr "識別號"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "MM"
|
||||
msgstr "月月"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "Name On Account"
|
||||
msgstr "賬戶持有人名稱"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "Only one currency can be selected by Authorize.Net account."
|
||||
msgstr "每個 Authorize.Net 賬戶,只可選擇一種貨幣。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "付款服務商"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_token
|
||||
msgid "Payment Token"
|
||||
msgstr "付款指示物"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model,name:payment_authorize.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "付款交易"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-javascript
|
||||
#: code:addons/payment_authorize/static/src/interactions/payment_form.js:0
|
||||
msgid "Payment processing failed"
|
||||
msgstr "付款處理失敗"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\"."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/controllers/main.py:0
|
||||
msgid "Received tampered payment request data."
|
||||
msgstr "收到被篡改的付款請求數據。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.payment_provider_form
|
||||
msgid "Set Account Currency"
|
||||
msgstr "設定賬戶貨幣"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_login
|
||||
msgid "The ID solely used to identify the account with Authorize.Net"
|
||||
msgstr "只用於向 Authorize.Net 識別該帳戶的識別碼"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__authorize_client_key
|
||||
msgid ""
|
||||
"The public client key. To generate directly from Odoo or from Authorize.Net "
|
||||
"backend."
|
||||
msgstr "客戶公鑰。直接從Odoo或從Authorize.Net後端產生。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "此付款服務商的技術代碼。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_transaction.py:0
|
||||
msgid ""
|
||||
"The transaction is not in a status to be refunded. (status: %(status)s, "
|
||||
"details: %(message)s)"
|
||||
msgstr "交易並非處於可以退款的狀態。(狀態:%(status)s,詳情:%(message)s)"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model:ir.model.fields,help:payment_authorize.field_payment_token__authorize_profile
|
||||
msgid ""
|
||||
"The unique reference for the partner/token combination in the Authorize.net "
|
||||
"backend."
|
||||
msgstr "Authorize.net 後端對此合作夥伴與權杖組合的唯一參考。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#. odoo-python
|
||||
#: code:addons/payment_authorize/models/payment_provider.py:0
|
||||
msgid "This action cannot be performed while the provider is disabled."
|
||||
msgstr "若服務商已設為停用,便不可執行此操作。"
|
||||
|
||||
#. module: payment_authorize
|
||||
#: model_terms:ir.ui.view,arch_db:payment_authorize.inline_form
|
||||
msgid "YY"
|
||||
msgstr "年年"
|
||||
|
||||
#~ msgid "No transaction found matching reference %s."
|
||||
#~ msgstr "沒有找到匹配參考 %s 的交易。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Received data with status code \"%(status)s\" and error code \"%(error)s\""
|
||||
#~ msgstr "收到數據,狀態代碼:%(status)s,錯誤代碼:%(error)s"
|
||||
|
||||
#~ msgid "The transaction is not linked to a token."
|
||||
#~ msgstr "交易未有連結至代碼。"
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import payment_provider
|
||||
from . import payment_token
|
||||
from . import payment_transaction
|
||||
|
|
@ -0,0 +1,358 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
import logging
|
||||
import pprint
|
||||
|
||||
from uuid import uuid4
|
||||
|
||||
import requests
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AuthorizeAPI:
|
||||
""" Authorize.net Gateway API integration.
|
||||
|
||||
This class allows contacting the Authorize.net API with simple operation
|
||||
requests. It implements a *very limited* subset of the complete API
|
||||
(http://developer.authorize.net/api/reference); namely:
|
||||
- Customer Profile/Payment Profile creation
|
||||
- Transaction authorization/capture/voiding
|
||||
"""
|
||||
|
||||
AUTH_ERROR_STATUS = '3'
|
||||
|
||||
def __init__(self, provider):
|
||||
"""Initiate the environment with the provider data.
|
||||
|
||||
:param recordset provider: payment.provider account that will be contacted
|
||||
"""
|
||||
if provider.state == 'enabled':
|
||||
self.url = 'https://api.authorize.net/xml/v1/request.api'
|
||||
else:
|
||||
self.url = 'https://apitest.authorize.net/xml/v1/request.api'
|
||||
|
||||
self.state = provider.state
|
||||
self.name = provider.authorize_login
|
||||
self.transaction_key = provider.authorize_transaction_key
|
||||
|
||||
def _make_request(self, operation, data=None):
|
||||
request = {
|
||||
operation: {
|
||||
'merchantAuthentication': {
|
||||
'name': self.name,
|
||||
'transactionKey': self.transaction_key,
|
||||
},
|
||||
**(data or {})
|
||||
}
|
||||
}
|
||||
logged_request = {operation: data or {}}
|
||||
|
||||
_logger.info("sending request to %s:\n%s", self.url, pprint.pformat(logged_request))
|
||||
response = requests.post(self.url, json.dumps(request), timeout=60)
|
||||
response.raise_for_status()
|
||||
response = json.loads(response.content)
|
||||
_logger.info("response received:\n%s", pprint.pformat(response))
|
||||
|
||||
messages = response.get('messages')
|
||||
if messages and messages.get('resultCode') == 'Error':
|
||||
err_msg = messages.get('message')[0]['text']
|
||||
|
||||
tx_errors = response.get('transactionResponse', {}).get('errors')
|
||||
if tx_errors:
|
||||
if err_msg:
|
||||
err_msg += '\n'
|
||||
err_msg += '\n'.join([e.get('errorText', '') for e in tx_errors])
|
||||
|
||||
return {
|
||||
'err_code': messages.get('message')[0].get('code'),
|
||||
'err_msg': err_msg,
|
||||
}
|
||||
|
||||
return response
|
||||
|
||||
def _format_response(self, response, operation):
|
||||
if response and response.get('err_code'):
|
||||
return {
|
||||
'x_response_code': self.AUTH_ERROR_STATUS,
|
||||
'x_response_reason_text': response.get('err_msg')
|
||||
}
|
||||
else:
|
||||
tx_response = response.get('transactionResponse', {})
|
||||
return {
|
||||
'x_response_code': tx_response.get('responseCode'),
|
||||
'x_trans_id': tx_response.get('transId'),
|
||||
'x_type': operation,
|
||||
'payment_method_code': tx_response.get('accountType'),
|
||||
}
|
||||
|
||||
# Customer profiles
|
||||
def create_customer_profile(self, partner, transaction_id):
|
||||
""" Create an Auth.net payment/customer profile from an existing transaction.
|
||||
|
||||
Creates a customer profile for the partner/credit card combination and links
|
||||
a corresponding payment profile to it. Note that a single partner in the Odoo
|
||||
database can have multiple customer profiles in Authorize.net (i.e. a customer
|
||||
profile is created for every res.partner/payment.token couple).
|
||||
|
||||
Note that this function makes 2 calls to the authorize api, since we need to
|
||||
obtain a partial card number to generate a meaningful payment.token name.
|
||||
|
||||
:param record partner: the res.partner record of the customer
|
||||
:param str transaction_id: id of the authorized transaction in the
|
||||
Authorize.net backend
|
||||
|
||||
:return: a dict containing the profile_id and payment_profile_id of the
|
||||
newly created customer profile and payment profile as well as the
|
||||
last digits of the card number
|
||||
:rtype: dict
|
||||
"""
|
||||
response = self._make_request('createCustomerProfileFromTransactionRequest', {
|
||||
'transId': transaction_id,
|
||||
'customer': {
|
||||
'merchantCustomerId': ('ODOO-%s-%s' % (partner.id, uuid4().hex[:8]))[:20],
|
||||
'email': partner.email or ''
|
||||
}
|
||||
})
|
||||
|
||||
if not response.get('customerProfileId'):
|
||||
_logger.warning(
|
||||
"unable to create customer payment profile, data missing from transaction with "
|
||||
"id %(tx_id)s, partner id: %(partner_id)s",
|
||||
{
|
||||
'tx_id': transaction_id,
|
||||
'partner_id': partner,
|
||||
},
|
||||
)
|
||||
return False
|
||||
|
||||
res = {
|
||||
'profile_id': response.get('customerProfileId'),
|
||||
'payment_profile_id': response.get('customerPaymentProfileIdList')[0]
|
||||
}
|
||||
|
||||
response = self._make_request('getCustomerPaymentProfileRequest', {
|
||||
'customerProfileId': res['profile_id'],
|
||||
'customerPaymentProfileId': res['payment_profile_id'],
|
||||
})
|
||||
|
||||
payment = response.get('paymentProfile', {}).get('payment', {})
|
||||
if 'creditCard' in payment:
|
||||
# Authorize.net pads the card and account numbers with X's.
|
||||
res['payment_details'] = payment.get('creditCard', {}).get('cardNumber')[-4:]
|
||||
else:
|
||||
res['payment_details'] = payment.get('bankAccount', {}).get('accountNumber')[-4:]
|
||||
return res
|
||||
|
||||
def delete_customer_profile(self, profile_id):
|
||||
"""Delete a customer profile
|
||||
|
||||
:param str profile_id: the id of the customer profile in the Authorize.net backend
|
||||
|
||||
:return: a dict containing the response code
|
||||
:rtype: dict
|
||||
"""
|
||||
response = self._make_request("deleteCustomerProfileRequest", {'customerProfileId': profile_id})
|
||||
return self._format_response(response, 'deleteCustomerProfile')
|
||||
|
||||
#=== Transaction management ===#
|
||||
def _prepare_authorization_transaction_request(self, transaction_type, tx_data, tx):
|
||||
# The billTo parameter is required for new ACH transactions (transactions without a payment.token),
|
||||
# but is not allowed for transactions with a payment.token.
|
||||
bill_to = {}
|
||||
if 'profile' not in tx_data:
|
||||
if tx.partner_id.is_company:
|
||||
split_name = '', tx.partner_name
|
||||
else:
|
||||
split_name = payment_utils.split_partner_name(tx.partner_name)
|
||||
# max lengths are defined by the Authorize API
|
||||
bill_to = {
|
||||
'billTo': {
|
||||
'firstName': split_name[0][:50],
|
||||
'lastName': split_name[1][:50], # lastName is always required
|
||||
'company': tx.partner_name[:50] if tx.partner_id.is_company else '',
|
||||
'address': tx.partner_address,
|
||||
'city': tx.partner_city,
|
||||
'state': tx.partner_state_id.name or '',
|
||||
'zip': tx.partner_zip,
|
||||
'country': tx.partner_country_id.name or '',
|
||||
}
|
||||
}
|
||||
|
||||
# These keys have to be in the order defined in
|
||||
# https://apitest.authorize.net/xml/v1/schema/AnetApiSchema.xsd
|
||||
return {
|
||||
'transactionRequest': {
|
||||
'transactionType': transaction_type,
|
||||
'amount': str(tx.amount),
|
||||
**tx_data,
|
||||
'order': {
|
||||
'invoiceNumber': tx.reference[:20],
|
||||
'description': tx.reference[:255],
|
||||
},
|
||||
'customer': {
|
||||
'email': tx.partner_email or '',
|
||||
},
|
||||
**bill_to,
|
||||
'customerIP': payment_utils.get_customer_ip_address(),
|
||||
}
|
||||
}
|
||||
|
||||
def authorize(self, tx, token=None, opaque_data=None):
|
||||
""" Authorize (without capture) a payment for the given amount.
|
||||
|
||||
:param recordset tx: The transaction of the payment, as a `payment.transaction` record
|
||||
:param recordset token: The token of the payment method to charge, as a `payment.token`
|
||||
record
|
||||
:param dict opaque_data: The payment details obfuscated by Authorize.Net
|
||||
:return: a dict containing the response code, transaction id and transaction type
|
||||
:rtype: dict
|
||||
"""
|
||||
tx_data = self._prepare_tx_data(token=token, opaque_data=opaque_data)
|
||||
response = self._make_request(
|
||||
'createTransactionRequest',
|
||||
self._prepare_authorization_transaction_request('authOnlyTransaction', tx_data, tx)
|
||||
)
|
||||
return self._format_response(response, 'auth_only')
|
||||
|
||||
def auth_and_capture(self, tx, token=None, opaque_data=None):
|
||||
"""Authorize and capture a payment for the given amount.
|
||||
|
||||
Authorize and immediately capture a payment for the given payment.token
|
||||
record for the specified amount with reference as communication.
|
||||
|
||||
:param recordset tx: The transaction of the payment, as a `payment.transaction` record
|
||||
:param record token: the payment.token record that must be charged
|
||||
:param str opaque_data: the transaction opaque_data obtained from Authorize.net
|
||||
|
||||
:return: a dict containing the response code, transaction id and transaction type
|
||||
:rtype: dict
|
||||
"""
|
||||
tx_data = self._prepare_tx_data(token=token, opaque_data=opaque_data)
|
||||
response = self._make_request(
|
||||
'createTransactionRequest',
|
||||
self._prepare_authorization_transaction_request('authCaptureTransaction', tx_data, tx)
|
||||
)
|
||||
|
||||
result = self._format_response(response, 'auth_capture')
|
||||
errors = response.get('transactionResponse', {}).get('errors')
|
||||
if errors:
|
||||
result['x_response_reason_text'] = '\n'.join([e.get('errorText') for e in errors])
|
||||
return result
|
||||
|
||||
def _prepare_tx_data(self, token=None, opaque_data=False):
|
||||
"""
|
||||
:param token: The token of the payment method to charge, as a `payment.token` record
|
||||
:param dict opaque_data: The payment details obfuscated by Authorize.Net
|
||||
"""
|
||||
assert (token or opaque_data) and not (token and opaque_data), "Exactly one of token or opaque_data must be specified"
|
||||
if token:
|
||||
token.ensure_one()
|
||||
return {
|
||||
'profile': {
|
||||
'customerProfileId': token.authorize_profile,
|
||||
'paymentProfile': {
|
||||
'paymentProfileId': token.provider_ref,
|
||||
}
|
||||
},
|
||||
}
|
||||
else:
|
||||
return {
|
||||
'payment': {
|
||||
'opaqueData': opaque_data,
|
||||
}
|
||||
}
|
||||
|
||||
def get_transaction_details(self, transaction_id):
|
||||
""" Return detailed information about a specific transaction. Useful to issue refunds.
|
||||
|
||||
:param str transaction_id: transaction id
|
||||
:return: a dict containing the transaction details
|
||||
:rtype: dict
|
||||
"""
|
||||
return self._make_request('getTransactionDetailsRequest', {'transId': transaction_id})
|
||||
|
||||
def capture(self, transaction_id, amount):
|
||||
"""Capture a previously authorized payment for the given amount.
|
||||
|
||||
Capture a previously authorized payment. Note that the amount is required
|
||||
even though we do not support partial capture.
|
||||
|
||||
:param str transaction_id: id of the authorized transaction in the
|
||||
Authorize.net backend
|
||||
:param str amount: transaction amount (up to 15 digits with decimal point)
|
||||
|
||||
:return: a dict containing the response code, transaction id and transaction type
|
||||
:rtype: dict
|
||||
"""
|
||||
response = self._make_request('createTransactionRequest', {
|
||||
'transactionRequest': {
|
||||
'transactionType': 'priorAuthCaptureTransaction',
|
||||
'amount': str(amount),
|
||||
'refTransId': transaction_id,
|
||||
}
|
||||
})
|
||||
return self._format_response(response, 'prior_auth_capture')
|
||||
|
||||
def void(self, transaction_id):
|
||||
"""Void a previously authorized payment.
|
||||
|
||||
:param str transaction_id: the id of the authorized transaction in the
|
||||
Authorize.net backend
|
||||
:return: a dict containing the response code, transaction id and transaction type
|
||||
:rtype: dict
|
||||
"""
|
||||
response = self._make_request('createTransactionRequest', {
|
||||
'transactionRequest': {
|
||||
'transactionType': 'voidTransaction',
|
||||
'refTransId': transaction_id
|
||||
}
|
||||
})
|
||||
return self._format_response(response, 'void')
|
||||
|
||||
def refund(self, transaction_id, amount, tx_details):
|
||||
"""Refund a previously authorized payment. If the transaction is not settled
|
||||
yet, it will be voided.
|
||||
|
||||
:param str transaction_id: the id of the authorized transaction in the
|
||||
Authorize.net backend
|
||||
:param float amount: transaction amount to refund
|
||||
:param dict tx_details: The transaction details from `get_transaction_details()`.
|
||||
:return: a dict containing the response code, transaction id and transaction type
|
||||
:rtype: dict
|
||||
"""
|
||||
card = tx_details.get('transaction', {}).get('payment', {}).get('creditCard', {}).get('cardNumber')
|
||||
response = self._make_request('createTransactionRequest', {
|
||||
'transactionRequest': {
|
||||
'transactionType': 'refundTransaction',
|
||||
'amount': str(amount),
|
||||
'payment': {
|
||||
'creditCard': {
|
||||
'cardNumber': card,
|
||||
'expirationDate': 'XXXX',
|
||||
}
|
||||
},
|
||||
'refTransId': transaction_id,
|
||||
}
|
||||
})
|
||||
return self._format_response(response, 'refund')
|
||||
|
||||
# Provider configuration: fetch authorize_client_key & currencies
|
||||
def merchant_details(self):
|
||||
""" Retrieves the merchant details and generate a new public client key if none exists.
|
||||
|
||||
:return: Dictionary containing the merchant details
|
||||
:rtype: dict"""
|
||||
return self._make_request('getMerchantDetailsRequest')
|
||||
|
||||
# Test
|
||||
def test_authenticate(self):
|
||||
""" Test Authorize.net communication with a simple credentials check.
|
||||
|
||||
:return: The authentication results
|
||||
:rtype: dict
|
||||
"""
|
||||
return self._make_request('authenticateTestRequest')
|
||||
|
|
@ -0,0 +1,135 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import json
|
||||
import pprint
|
||||
|
||||
from odoo import _, api, fields, models
|
||||
from odoo.exceptions import UserError, ValidationError
|
||||
from odoo.fields import Command
|
||||
|
||||
from odoo.addons.payment.logging import get_payment_logger
|
||||
from odoo.addons.payment_authorize import const
|
||||
from odoo.addons.payment_authorize.models.authorize_request import AuthorizeAPI
|
||||
|
||||
|
||||
_logger = get_payment_logger(__name__)
|
||||
|
||||
|
||||
class PaymentProvider(models.Model):
|
||||
_inherit = 'payment.provider'
|
||||
|
||||
code = fields.Selection(
|
||||
selection_add=[('authorize', 'Authorize.Net')], ondelete={'authorize': 'set default'})
|
||||
authorize_login = fields.Char(
|
||||
string="API Login ID",
|
||||
help="The ID solely used to identify the account with Authorize.Net",
|
||||
required_if_provider='authorize',
|
||||
copy=False,
|
||||
)
|
||||
authorize_transaction_key = fields.Char(
|
||||
string="API Transaction Key",
|
||||
required_if_provider='authorize',
|
||||
copy=False,
|
||||
groups='base.group_system',
|
||||
)
|
||||
authorize_signature_key = fields.Char(
|
||||
string="API Signature Key",
|
||||
required_if_provider='authorize',
|
||||
copy=False,
|
||||
groups='base.group_system',
|
||||
)
|
||||
authorize_client_key = fields.Char(
|
||||
string="API Client Key",
|
||||
help="The public client key. To generate directly from Odoo or from Authorize.Net backend.",
|
||||
copy=False,
|
||||
)
|
||||
|
||||
# === CONSTRAINT METHODS ===#
|
||||
|
||||
# Authorize.Net supports only one currency: "One gateway account is required for each currency"
|
||||
# See https://community.developer.authorize.net/t5/The-Authorize-Net-Developer-Blog/Authorize-Net-UK-Europe-Update/ba-p/35957
|
||||
@api.constrains('available_currency_ids', 'state')
|
||||
def _limit_available_currency_ids(self):
|
||||
for provider in self.filtered(lambda p: p.code == 'authorize'):
|
||||
if len(provider.available_currency_ids) > 1 and provider.state != 'disabled':
|
||||
raise ValidationError(
|
||||
_("Only one currency can be selected by Authorize.Net account.")
|
||||
)
|
||||
|
||||
# === COMPUTE METHODS === #
|
||||
|
||||
def _compute_feature_support_fields(self):
|
||||
""" Override of `payment` to enable additional features. """
|
||||
super()._compute_feature_support_fields()
|
||||
self.filtered(lambda p: p.code == 'authorize').update({
|
||||
'support_manual_capture': 'full_only',
|
||||
'support_refund': 'full_only',
|
||||
'support_tokenization': True,
|
||||
})
|
||||
|
||||
# === 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 != 'authorize':
|
||||
return super()._get_default_payment_method_codes()
|
||||
return const.DEFAULT_PAYMENT_METHOD_CODES
|
||||
|
||||
# === ACTION METHODS ===#
|
||||
|
||||
def action_update_merchant_details(self):
|
||||
""" Fetch the merchant details to update the client key and the account currency. """
|
||||
self.ensure_one()
|
||||
|
||||
if self.state == 'disabled':
|
||||
raise UserError(_("This action cannot be performed while the provider is disabled."))
|
||||
|
||||
authorize_API = AuthorizeAPI(self)
|
||||
|
||||
# Validate the API Login ID and Transaction Key
|
||||
res_content = authorize_API.test_authenticate()
|
||||
_logger.info("test_authenticate request response:\n%s", pprint.pformat(res_content))
|
||||
if res_content.get('err_msg'):
|
||||
raise UserError(_("Failed to authenticate.\n%s", res_content['err_msg']))
|
||||
|
||||
# Update the merchant details
|
||||
res_content = authorize_API.merchant_details()
|
||||
_logger.info("merchant_details request response:\n%s", pprint.pformat(res_content))
|
||||
if res_content.get('err_msg'):
|
||||
raise UserError(_("Could not fetch merchant details:\n%s", res_content['err_msg']))
|
||||
|
||||
currency = self.env['res.currency'].search([('name', 'in', res_content.get('currencies'))])
|
||||
self.available_currency_ids = [Command.set(currency.ids)]
|
||||
self.authorize_client_key = res_content.get('publicClientKey')
|
||||
|
||||
# === BUSINESS METHODS ===#
|
||||
|
||||
def _get_validation_amount(self):
|
||||
""" Override of payment to return the amount for Authorize.Net validation operations.
|
||||
|
||||
:return: The validation amount
|
||||
:rtype: float
|
||||
"""
|
||||
res = super()._get_validation_amount()
|
||||
if self.code != 'authorize':
|
||||
return res
|
||||
|
||||
return 0.01
|
||||
|
||||
def _authorize_get_inline_form_values(self):
|
||||
""" Return a serialized JSON of the required values to render the inline form.
|
||||
|
||||
Note: `self.ensure_one()`
|
||||
|
||||
:return: The JSON serial of the required values to render the inline form.
|
||||
:rtype: str
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
inline_form_values = {
|
||||
'state': self.state,
|
||||
'login_id': self.authorize_login,
|
||||
'client_key': self.authorize_client_key,
|
||||
}
|
||||
return json.dumps(inline_form_values)
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import logging
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PaymentToken(models.Model):
|
||||
_inherit = 'payment.token'
|
||||
|
||||
authorize_profile = fields.Char(
|
||||
string="Authorize.Net Profile ID",
|
||||
help="The unique reference for the partner/token combination in the Authorize.net backend.")
|
||||
|
|
@ -0,0 +1,251 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import pprint
|
||||
|
||||
from odoo import _, models
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment.logging import get_payment_logger
|
||||
from odoo.addons.payment_authorize import const
|
||||
from odoo.addons.payment_authorize.models.authorize_request import AuthorizeAPI
|
||||
|
||||
|
||||
_logger = get_payment_logger(__name__)
|
||||
|
||||
|
||||
class PaymentTransaction(models.Model):
|
||||
_inherit = 'payment.transaction'
|
||||
|
||||
def _get_specific_processing_values(self, processing_values):
|
||||
""" Override of payment to return an access token as provider-specific processing values.
|
||||
|
||||
Note: self.ensure_one() from `_get_processing_values`
|
||||
|
||||
:param dict processing_values: The generic processing values of the transaction
|
||||
:return: The dict of provider-specific processing values
|
||||
:rtype: dict
|
||||
"""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._get_specific_processing_values(processing_values)
|
||||
|
||||
return {
|
||||
'access_token': payment_utils.generate_access_token(
|
||||
processing_values['reference'], processing_values['partner_id']
|
||||
)
|
||||
}
|
||||
|
||||
def _authorize_create_transaction_request(self, opaque_data):
|
||||
""" Create an Authorize.Net payment transaction request.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param dict opaque_data: The payment details obfuscated by Authorize.Net
|
||||
:return:
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
authorize_API = AuthorizeAPI(self.provider_id)
|
||||
if self.provider_id.capture_manually or self.operation == 'validation':
|
||||
return authorize_API.authorize(self, opaque_data=opaque_data)
|
||||
else:
|
||||
return authorize_API.auth_and_capture(self, opaque_data=opaque_data)
|
||||
|
||||
def _send_payment_request(self):
|
||||
"""Override of `payment` to send a payment request to Authorize."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._send_payment_request()
|
||||
|
||||
authorize_API = AuthorizeAPI(self.provider_id)
|
||||
if self.provider_id.capture_manually:
|
||||
res_content = authorize_API.authorize(self, token=self.token_id)
|
||||
_logger.info(
|
||||
"authorize request response for transaction %s:\n%s",
|
||||
self.reference, pprint.pformat(res_content)
|
||||
)
|
||||
else:
|
||||
res_content = authorize_API.auth_and_capture(self, token=self.token_id)
|
||||
_logger.info(
|
||||
"auth_and_capture request response for transaction %s:\n%s",
|
||||
self.reference, pprint.pformat(res_content)
|
||||
)
|
||||
self._process('authorize', {'response': res_content})
|
||||
|
||||
def _send_refund_request(self):
|
||||
"""Override of `payment` to send a refund request to Authorize."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._send_refund_request()
|
||||
|
||||
authorize_api = AuthorizeAPI(self.provider_id)
|
||||
tx_details = authorize_api.get_transaction_details(
|
||||
self.source_transaction_id.provider_reference
|
||||
)
|
||||
if 'err_code' in tx_details: # Could not retrieve the transaction details.
|
||||
self._set_error(_(
|
||||
"Could not retrieve the transaction details. (error code: %(error_code)s; error_details: %(error_message)s)",
|
||||
error_code=tx_details['err_code'], error_message=tx_details.get('err_msg'),
|
||||
))
|
||||
return
|
||||
|
||||
tx_status = tx_details.get('transaction', {}).get('transactionStatus')
|
||||
if tx_status in const.TRANSACTION_STATUS_MAPPING['voided']:
|
||||
# The payment has been voided from Authorize.net side before we could refund it.
|
||||
self._set_canceled(extra_allowed_states=('done',))
|
||||
elif tx_status in const.TRANSACTION_STATUS_MAPPING['refunded']:
|
||||
# The payment has been refunded from Authorize.net side before we could refund it. We
|
||||
# create a refund tx on Odoo to reflect the move of the funds.
|
||||
self._set_done()
|
||||
# Immediately post-process the transaction as the post-processing will not be
|
||||
# triggered by a customer browsing the transaction from the portal.
|
||||
self.env.ref('payment.cron_post_process_payment_tx')._trigger()
|
||||
elif any(tx_status in const.TRANSACTION_STATUS_MAPPING[k] for k in ('authorized', 'captured')):
|
||||
if tx_status in const.TRANSACTION_STATUS_MAPPING['authorized']:
|
||||
# The payment has not been settled on Authorize.net yet. It must be voided rather
|
||||
# than refunded. Since the funds have not moved yet, we don't create a refund tx.
|
||||
res_content = authorize_api.void(self.source_transaction_id.provider_reference)
|
||||
else:
|
||||
# The payment has been settled on Authorize.net side. We can refund it.
|
||||
rounded_amount = round(self.amount, self.currency_id.decimal_places)
|
||||
res_content = authorize_api.refund(
|
||||
self.provider_reference, rounded_amount, tx_details
|
||||
)
|
||||
_logger.info(
|
||||
"refund request response for transaction %s:\n%s",
|
||||
self.reference, pprint.pformat(res_content)
|
||||
)
|
||||
data = {'reference': self.reference, 'response': res_content}
|
||||
self._process('authorize', data)
|
||||
else:
|
||||
err_msg = _(
|
||||
"The transaction is not in a status to be refunded."
|
||||
" (status: %(status)s, details: %(message)s)",
|
||||
status=tx_status, message=tx_details.get('messages', {}).get('message'),
|
||||
)
|
||||
_logger.warning(err_msg)
|
||||
self._set_error(err_msg)
|
||||
|
||||
def _send_capture_request(self):
|
||||
"""Override of `payment` to send a capture request to Authorize."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._send_capture_request()
|
||||
|
||||
authorize_API = AuthorizeAPI(self.provider_id)
|
||||
rounded_amount = round(self.amount, self.currency_id.decimal_places)
|
||||
res_content = authorize_API.capture(
|
||||
self.source_transaction_id.provider_reference, rounded_amount
|
||||
)
|
||||
_logger.info(
|
||||
"capture request response for transaction %s:\n%s",
|
||||
self.reference, pprint.pformat(res_content)
|
||||
)
|
||||
self._process('authorize', {'response': res_content})
|
||||
|
||||
def _send_void_request(self):
|
||||
"""Override of `payment` to send a void request to Authorize."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._send_void_request()
|
||||
|
||||
authorize_API = AuthorizeAPI(self.provider_id)
|
||||
res_content = authorize_API.void(self.provider_reference)
|
||||
_logger.info(
|
||||
"void request response for transaction %s:\n%s",
|
||||
self.reference, pprint.pformat(res_content)
|
||||
)
|
||||
self._process('authorize', {'response': res_content})
|
||||
|
||||
def _extract_amount_data(self, payment_data):
|
||||
"""Override of `payment` to extract the amount and currency from the payment data."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._extract_amount_data(payment_data)
|
||||
|
||||
tx_details = AuthorizeAPI(self.provider_id).get_transaction_details(
|
||||
payment_data.get('response', {}).get('x_trans_id')
|
||||
)
|
||||
amount = tx_details.get('transaction', {}).get('authAmount')
|
||||
# Authorize supports only one currency per account.
|
||||
currency = self.provider_id.available_currency_ids # The currency has not been removed from the provider.
|
||||
return {
|
||||
'amount': float(amount),
|
||||
'currency_code': currency.name,
|
||||
}
|
||||
|
||||
def _apply_updates(self, payment_data):
|
||||
"""Override of `payment` to update the transaction based on the payment data."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._apply_updates(payment_data)
|
||||
|
||||
response_content = payment_data.get('response')
|
||||
|
||||
# Update the provider reference.
|
||||
self.provider_reference = response_content.get('x_trans_id')
|
||||
|
||||
# Update the payment method.
|
||||
payment_method_code = response_content.get('payment_method_code', '').lower()
|
||||
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 = response_content.get('x_response_code', '3')
|
||||
if status_code == '1': # Approved
|
||||
status_type = response_content.get('x_type').lower()
|
||||
if status_type in ('auth_capture', 'prior_auth_capture'):
|
||||
self._set_done()
|
||||
elif status_type == 'auth_only':
|
||||
self._set_authorized()
|
||||
if self.operation == 'validation':
|
||||
self._void() # In last step because it processes the response.
|
||||
elif status_type == 'void':
|
||||
if self.operation == 'validation': # Validation txs are authorized and then voided
|
||||
self._set_done() # If the refund went through, the validation tx is confirmed
|
||||
else:
|
||||
self._set_canceled(extra_allowed_states=('done',))
|
||||
elif status_type == 'refund' and self.operation == 'refund':
|
||||
self._set_done()
|
||||
# Immediately post-process the transaction as the post-processing will not be
|
||||
# triggered by a customer browsing the transaction from the portal.
|
||||
self.env.ref('payment.cron_post_process_payment_tx')._trigger()
|
||||
elif status_code == '2': # Declined
|
||||
self._set_canceled(state_message=response_content.get('x_response_reason_text'))
|
||||
elif status_code == '4': # Held for Review
|
||||
self._set_pending()
|
||||
else: # Error / Unknown code
|
||||
error_code = response_content.get('x_response_reason_text')
|
||||
_logger.info(
|
||||
"Received data with invalid status (%(status)s) and error code (%(err)s) for "
|
||||
"transaction %(ref)s.",
|
||||
{
|
||||
'status': status_code,
|
||||
'err': error_code,
|
||||
'ref': self.reference,
|
||||
},
|
||||
)
|
||||
self._set_error(_(
|
||||
"Received data with status code \"%(status)s\" and error code \"%(error)s\".",
|
||||
status=status_code, error=error_code
|
||||
))
|
||||
|
||||
def _extract_token_values(self, payment_data):
|
||||
"""Override of `payment` to extract the token values from the payment data."""
|
||||
if self.provider_code != 'authorize':
|
||||
return super()._extract_token_values(payment_data)
|
||||
|
||||
if self.token_id:
|
||||
return {}
|
||||
|
||||
authorize_API = AuthorizeAPI(self.provider_id)
|
||||
cust_profile = authorize_API.create_customer_profile(
|
||||
self.partner_id, self.provider_reference
|
||||
)
|
||||
_logger.info(
|
||||
"create_customer_profile request response for transaction %s:\n%s",
|
||||
self.reference, pprint.pformat(cust_profile)
|
||||
)
|
||||
if not cust_profile or 'payment_profile_id' not in cust_profile: # Failed to fetch data.
|
||||
return {}
|
||||
|
||||
return {
|
||||
'payment_details': cust_profile.get('payment_details'),
|
||||
'provider_ref': cust_profile['payment_profile_id'],
|
||||
'authorize_profile': cust_profile.get('profile_id'),
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 851 B |
|
|
@ -0,0 +1 @@
|
|||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><circle cx="18.5" cy="18.5" r="14.5" fill="#3477F6"/><circle cx="37.5" cy="37.5" r="8.5" fill="#F5C142"/><path d="M43.105 4h.972V.818h1.108V0H42v.818h1.105V4Zm2.775 0h.858V1.453h.053L47.663 4h.555l.871-2.547h.056V4H50V0h-1.108l-.924 2.714h-.05L46.99 0h-1.11v4Z" fill="#D1D5DB"/></svg>
|
||||
|
After Width: | Height: | Size: 368 B |
|
|
@ -0,0 +1,225 @@
|
|||
/* global Accept */
|
||||
|
||||
import { loadJS } from '@web/core/assets';
|
||||
import { _t } from '@web/core/l10n/translation';
|
||||
import { rpc, RPCError } from '@web/core/network/rpc';
|
||||
import { patch } from '@web/core/utils/patch';
|
||||
|
||||
import { PaymentForm } from '@payment/interactions/payment_form';
|
||||
|
||||
patch(PaymentForm.prototype, {
|
||||
|
||||
setup() {
|
||||
super.setup();
|
||||
this.authorizeData = {}; // Store the form data of each instantiated payment method.
|
||||
},
|
||||
|
||||
// #=== DOM MANIPULATION ===#
|
||||
|
||||
/**
|
||||
* Prepare the inline form of Authorize.net for direct payment.
|
||||
*
|
||||
* @private
|
||||
* @param {number} providerId - The id of the selected payment option's provider.
|
||||
* @param {string} providerCode - The code of the selected payment option's provider.
|
||||
* @param {number} paymentOptionId - The id of the selected payment option.
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @param {string} flow - The online payment flow of the selected payment option.
|
||||
* @return {void}
|
||||
*/
|
||||
async _prepareInlineForm(providerId, providerCode, paymentOptionId, paymentMethodCode, flow) {
|
||||
if (providerCode !== 'authorize') {
|
||||
await super._prepareInlineForm(...arguments);
|
||||
return;
|
||||
}
|
||||
|
||||
// Check if the inline form values were already extracted.
|
||||
if (flow === 'token') {
|
||||
return; // Don't show the form for tokens.
|
||||
} else if (this.authorizeData[paymentOptionId]) {
|
||||
this._setPaymentFlow('direct'); // Overwrite the flow even if no re-instantiation.
|
||||
await loadJS(this.authorizeData[paymentOptionId]['acceptJSUrl']); // Reload the SDK.
|
||||
return; // Don't re-extract the data if already done for this payment method.
|
||||
}
|
||||
|
||||
// Overwrite the flow of the selected payment method.
|
||||
this._setPaymentFlow('direct');
|
||||
|
||||
// Extract and deserialize the inline form values.
|
||||
const radio = document.querySelector('input[name="o_payment_radio"]:checked');
|
||||
const inlineForm = this._getInlineForm(radio);
|
||||
const authorizeForm = inlineForm.querySelector('[name="o_authorize_form"]');
|
||||
this.authorizeData[paymentOptionId] = JSON.parse(
|
||||
authorizeForm.dataset['authorizeInlineFormValues']
|
||||
);
|
||||
let acceptJSUrl = 'https://js.authorize.net/v1/Accept.js';
|
||||
if (this.authorizeData[paymentOptionId].state !== 'enabled') {
|
||||
acceptJSUrl = 'https://jstest.authorize.net/v1/Accept.js';
|
||||
}
|
||||
this.authorizeData[paymentOptionId].form = authorizeForm;
|
||||
this.authorizeData[paymentOptionId].acceptJSUrl = acceptJSUrl;
|
||||
|
||||
// Load the SDK.
|
||||
await loadJS(acceptJSUrl);
|
||||
},
|
||||
|
||||
// #=== PAYMENT FLOW ===#
|
||||
|
||||
/**
|
||||
* Trigger the payment processing by submitting the data.
|
||||
*
|
||||
* @override method from payment.payment_form
|
||||
* @private
|
||||
* @param {string} providerCode - The code of the selected payment option's provider.
|
||||
* @param {number} paymentOptionId - The id of the selected payment option.
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @param {string} flow - The payment flow of the selected payment option.
|
||||
* @return {void}
|
||||
*/
|
||||
async _initiatePaymentFlow(providerCode, paymentOptionId, paymentMethodCode, flow) {
|
||||
if (providerCode !== 'authorize' || flow === 'token') {
|
||||
// Tokens are handled by the generic flow
|
||||
await super._initiatePaymentFlow(...arguments);
|
||||
return;
|
||||
}
|
||||
|
||||
const inputs = Object.values(
|
||||
this._authorizeGetInlineFormInputs(paymentOptionId, paymentMethodCode)
|
||||
);
|
||||
if (!inputs.every(element => element.reportValidity())) {
|
||||
this._enableButton(); // The submit button is disabled at this point, enable it
|
||||
return;
|
||||
}
|
||||
|
||||
await super._initiatePaymentFlow(...arguments);
|
||||
},
|
||||
|
||||
/**
|
||||
* Process the direct payment flow.
|
||||
*
|
||||
* @override method from payment.payment_form
|
||||
* @private
|
||||
* @param {string} providerCode - The code of the selected payment option's provider.
|
||||
* @param {number} paymentOptionId - The id of the selected payment option.
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @param {object} processingValues - The processing values of the transaction.
|
||||
* @return {void}
|
||||
*/
|
||||
async _processDirectFlow(providerCode, paymentOptionId, paymentMethodCode, processingValues) {
|
||||
if (providerCode !== 'authorize') {
|
||||
await super._processDirectFlow(...arguments);
|
||||
return;
|
||||
}
|
||||
|
||||
// Build the authentication and card data objects to be dispatched to Authorized.Net
|
||||
const secureData = {
|
||||
authData: {
|
||||
apiLoginID: this.authorizeData[paymentOptionId]['login_id'],
|
||||
clientKey: this.authorizeData[paymentOptionId]['client_key'],
|
||||
},
|
||||
...this._authorizeGetPaymentDetails(paymentOptionId, paymentMethodCode),
|
||||
};
|
||||
|
||||
// Dispatch secure data to Authorize.Net to get a payment nonce in return
|
||||
Accept.dispatchData(secureData, async response => {
|
||||
await this._authorizeHandleResponse(response, processingValues);
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Handle the response from Authorize.Net and initiate the payment.
|
||||
*
|
||||
* @private
|
||||
* @param {object} response - The payment nonce returned by Authorized.Net
|
||||
* @param {object} processingValues - The processing values of the transaction.
|
||||
* @return {void}
|
||||
*/
|
||||
async _authorizeHandleResponse(response, processingValues) {
|
||||
if (response.messages.resultCode === 'Error') {
|
||||
let error = '';
|
||||
response.messages.message.forEach(msg => error += `${msg.code}: ${msg.text}\n`);
|
||||
this._displayErrorDialog(_t("Payment processing failed"), error);
|
||||
this._enableButton();
|
||||
return;
|
||||
}
|
||||
|
||||
// Initiate the payment
|
||||
try {
|
||||
await this.waitFor(rpc('/payment/authorize/payment', {
|
||||
'reference': processingValues.reference,
|
||||
'partner_id': processingValues.partner_id,
|
||||
'opaque_data': response.opaqueData,
|
||||
'access_token': processingValues.access_token,
|
||||
}));
|
||||
window.location = '/payment/status';
|
||||
} catch (error) {
|
||||
if (error instanceof RPCError) {
|
||||
this._displayErrorDialog(_t("Payment processing failed"), error.data.message);
|
||||
this._enableButton();
|
||||
} else {
|
||||
return Promise.reject(error);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
// #=== GETTERS ===#
|
||||
|
||||
/**
|
||||
* Return all relevant inline form inputs based on the payment method type of the provider.
|
||||
*
|
||||
* @private
|
||||
* @param {number} paymentOptionId - The id of the selected payment option.
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @return {Object} - An object mapping the name of inline form inputs to their DOM element
|
||||
*/
|
||||
_authorizeGetInlineFormInputs(paymentOptionId, paymentMethodCode) {
|
||||
const form = this.authorizeData[paymentOptionId]['form'];
|
||||
if (paymentMethodCode === 'card') {
|
||||
return {
|
||||
card: form.querySelector('#o_authorize_card'),
|
||||
month: form.querySelector('#o_authorize_month'),
|
||||
year: form.querySelector('#o_authorize_year'),
|
||||
code: form.querySelector('#o_authorize_code'),
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
accountName: form.querySelector('#o_authorize_account_name'),
|
||||
accountNumber: form.querySelector('#o_authorize_account_number'),
|
||||
abaNumber: form.querySelector('#o_authorize_aba_number'),
|
||||
accountType: form.querySelector('#o_authorize_account_type'),
|
||||
};
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Return the credit card or bank data to pass to the Accept.dispatch request.
|
||||
*
|
||||
* @private
|
||||
* @param {number} paymentOptionId - The id of the selected payment option.
|
||||
* @param {string} paymentMethodCode - The code of the selected payment method, if any.
|
||||
* @return {Object} - Data to pass to the Accept.dispatch request
|
||||
*/
|
||||
_authorizeGetPaymentDetails(paymentOptionId, paymentMethodCode) {
|
||||
const inputs = this._authorizeGetInlineFormInputs(paymentOptionId, paymentMethodCode);
|
||||
if (paymentMethodCode === 'card') {
|
||||
return {
|
||||
cardData: {
|
||||
cardNumber: inputs.card.value.replace(/ /g, ''), // Remove all spaces
|
||||
month: inputs.month.value,
|
||||
year: inputs.year.value,
|
||||
cardCode: inputs.code.value,
|
||||
},
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
bankData: {
|
||||
nameOnAccount: inputs.accountName.value.substring(0, 22), // Max allowed by acceptjs
|
||||
accountNumber: inputs.accountNumber.value,
|
||||
routingNumber: inputs.abaNumber.value,
|
||||
accountType: inputs.accountType.value,
|
||||
},
|
||||
};
|
||||
}
|
||||
},
|
||||
|
||||
});
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
/* Disable the number input arrows. */
|
||||
.o_authorize_form {
|
||||
|
||||
/* Chrome, Safari, Edge, Opera */
|
||||
input[type=number]::-webkit-outer-spin-button,
|
||||
input[type=number]::-webkit-inner-spin-button {
|
||||
appearance: none;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Firefox */
|
||||
input[type=number] {
|
||||
-moz-appearance: textfield;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_authorize
|
||||
from . import test_refund_flows
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.fields import Command
|
||||
|
||||
from odoo.addons.payment.tests.common import PaymentCommon
|
||||
|
||||
|
||||
class AuthorizeCommon(PaymentCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.authorize = cls._prepare_provider('authorize', update_values={
|
||||
'authorize_login': 'dummy',
|
||||
'authorize_transaction_key': 'dummy',
|
||||
'authorize_signature_key': '00000000',
|
||||
'available_currency_ids': [Command.set(cls.currency_usd.ids)]
|
||||
})
|
||||
|
||||
cls.provider = cls.authorize
|
||||
cls.currency = cls.currency_usd
|
||||
|
|
@ -0,0 +1,81 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from unittest.mock import patch
|
||||
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment_authorize.tests.common import AuthorizeCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class AuthorizeTest(AuthorizeCommon):
|
||||
|
||||
def test_compatible_providers(self):
|
||||
# Note: in the test common, 'USD' is specified as the currency linked to the user account.
|
||||
unsupported_currency = self._enable_currency('CHF')
|
||||
providers = self.env['payment.provider']._get_compatible_providers(
|
||||
self.company.id, self.partner.id, self.amount, currency_id=unsupported_currency.id
|
||||
)
|
||||
self.assertNotIn(self.authorize, providers)
|
||||
providers = self.env['payment.provider']._get_compatible_providers(
|
||||
self.company.id, self.partner.id, self.amount, currency_id=self.currency_usd.id
|
||||
)
|
||||
self.assertIn(self.authorize, providers)
|
||||
|
||||
def test_processing_values(self):
|
||||
"""Test custom 'access_token' processing_values for authorize provider."""
|
||||
tx = self._create_transaction(flow='direct')
|
||||
with mute_logger('odoo.addons.payment.models.payment_transaction'), \
|
||||
patch(
|
||||
'odoo.addons.payment.utils.generate_access_token',
|
||||
new=self._generate_test_access_token
|
||||
):
|
||||
processing_values = tx._get_processing_values()
|
||||
|
||||
with patch(
|
||||
'odoo.addons.payment.utils.generate_access_token', new=self._generate_test_access_token
|
||||
):
|
||||
self.assertTrue(payment_utils.check_access_token(
|
||||
processing_values['access_token'], self.reference, self.partner.id,
|
||||
))
|
||||
|
||||
def test_validation(self):
|
||||
self.assertEqual(self.authorize.available_currency_ids[0], self.currency_usd)
|
||||
self.assertEqual(self.authorize._get_validation_amount(), 0.01)
|
||||
self.assertEqual(self.authorize._get_validation_currency(), self.currency_usd)
|
||||
|
||||
def test_voiding_confirmed_tx_cancels_it(self):
|
||||
""" Test that voiding a transaction cancels it even if it's already confirmed. """
|
||||
source_tx = self._create_transaction('direct', state='done')
|
||||
with patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI'
|
||||
'.get_transaction_details', return_value={'transaction': {'authAmount': self.amount}},
|
||||
):
|
||||
source_tx._process('authorize', {
|
||||
'response': {
|
||||
'x_response_code': '1',
|
||||
'x_type': 'void',
|
||||
},
|
||||
})
|
||||
self.assertEqual(source_tx.state, 'cancel')
|
||||
|
||||
@mute_logger('odoo.addons.payment_authorize.models.payment_transaction')
|
||||
def test_extract_token_values_maps_fields_correctly(self):
|
||||
tx = self._create_transaction('direct')
|
||||
payment_data = {
|
||||
'payment_details': '1234',
|
||||
'payment_profile_id': '123456789',
|
||||
'profile_id': '987654321',
|
||||
}
|
||||
with patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI'
|
||||
'.create_customer_profile', return_value=payment_data,
|
||||
):
|
||||
token_values = tx._extract_token_values({})
|
||||
self.assertDictEqual(token_values, {
|
||||
'payment_details': '1234',
|
||||
'provider_ref': '123456789',
|
||||
'authorize_profile': '987654321',
|
||||
})
|
||||
|
|
@ -0,0 +1,77 @@
|
|||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from unittest.mock import patch
|
||||
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment_authorize.tests.common import AuthorizeCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestRefundFlows(AuthorizeCommon):
|
||||
|
||||
def test_refunding_voided_tx_cancels_it(self):
|
||||
""" Test that refunding a transaction that has been voided from Authorize.net side cancels
|
||||
it on Odoo. """
|
||||
source_tx = self._create_transaction('direct', state='done')
|
||||
with patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI'
|
||||
'.get_transaction_details',
|
||||
return_value={'transaction': {'transactionStatus': 'voided'}},
|
||||
):
|
||||
child_tx = source_tx._refund(amount_to_refund=source_tx.amount)
|
||||
self.assertEqual(child_tx.state, 'cancel')
|
||||
|
||||
def test_refunding_refunded_tx_creates_refund_tx(self):
|
||||
""" Test that refunding a transaction that has been refunded from Authorize.net side creates
|
||||
a refund transaction on Odoo. """
|
||||
source_tx = self._create_transaction('direct', state='done')
|
||||
with patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI'
|
||||
'.get_transaction_details',
|
||||
return_value={'transaction': {'transactionStatus': 'refundSettledSuccessfully'}},
|
||||
):
|
||||
source_tx._refund(amount_to_refund=source_tx.amount)
|
||||
refund_tx = self.env['payment.transaction'].search(
|
||||
[('source_transaction_id', '=', source_tx.id)]
|
||||
)
|
||||
self.assertTrue(refund_tx)
|
||||
|
||||
@mute_logger('odoo.addons.payment_authorize.models.payment_transaction')
|
||||
def test_refunding_authorized_tx_voids_it(self):
|
||||
""" Test that refunding a transaction that is still authorized on Authorize.net side voids
|
||||
it on Authorize.net instead of refunding it. """
|
||||
source_tx = self._create_transaction('direct', state='done')
|
||||
with patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI'
|
||||
'.get_transaction_details',
|
||||
return_value={'transaction': {'transactionStatus': 'authorizedPendingCapture'}},
|
||||
), patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI.void'
|
||||
) as void_mock, patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction._process'
|
||||
):
|
||||
source_tx._refund(amount_to_refund=source_tx.amount)
|
||||
self.assertEqual(void_mock.call_count, 1)
|
||||
|
||||
@mute_logger('odoo.addons.payment_authorize.models.payment_transaction')
|
||||
def test_refunding_captured_tx_refunds_it_and_creates_refund_tx(self):
|
||||
""" Test that refunding a transaction that is captured on Authorize.net side captures it and
|
||||
create a refund transaction on Odoo. """
|
||||
source_tx = self._create_transaction('direct', state='done')
|
||||
with patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI'
|
||||
'.get_transaction_details',
|
||||
return_value={'transaction': {'transactionStatus': 'settledSuccessfully'}},
|
||||
), patch(
|
||||
'odoo.addons.payment_authorize.models.authorize_request.AuthorizeAPI.refund'
|
||||
) as refund_mock, patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction._process'
|
||||
):
|
||||
source_tx._refund(amount_to_refund=source_tx.amount)
|
||||
self.assertEqual(refund_mock.call_count, 1)
|
||||
refund_tx = self.env['payment.transaction'].search(
|
||||
[('source_transaction_id', '=', source_tx.id)]
|
||||
)
|
||||
self.assertTrue(refund_tx)
|
||||
|
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="inline_form">
|
||||
<div name="o_authorize_form"
|
||||
class="o_authorize_form"
|
||||
t-att-data-authorize-inline-form-values="provider_sudo._authorize_get_inline_form_values()"
|
||||
>
|
||||
<t t-if="pm_sudo.code == 'card'">
|
||||
<div class="mb-3">
|
||||
<label for="o_authorize_card" class="col-form-label">Card Number</label>
|
||||
<input type="text" id="o_authorize_card" required="" maxlength="19" class="form-control"/>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-8 mb-3">
|
||||
<label for="o_authorize_month">Expiration</label>
|
||||
<div class="input-group">
|
||||
<input type="number" id="o_authorize_month" placeholder="MM" min="1" max="12" required="" class="form-control"/>
|
||||
<input type="number" id="o_authorize_year" placeholder="YY" min="00" max="99" required="" class="form-control"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-4 mb-3">
|
||||
<label for="o_authorize_code">Card Code</label>
|
||||
<input type="number" id="o_authorize_code" max="9999" class="form-control"/>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
<t t-else="" >
|
||||
<div class="mb-3">
|
||||
<label for="o_authorize_bank_name" class="col-form-label">Bank Name</label>
|
||||
<input type="text" id="o_authorize_bank_name" required="" class="form-control"/>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="o_authorize_account_name" class="col-form-label">Name On Account</label>
|
||||
<input type="text" id="o_authorize_account_name" required="" class="form-control"/>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="o_authorize_account_number" class="col-form-label">Account Number</label>
|
||||
<input type="text" id="o_authorize_account_number" required="" class="form-control"/>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="o_authorize_aba_number" class="col-form-label">ABA Routing Number</label>
|
||||
<input type="text" id="o_authorize_aba_number" required="" class="form-control"/>
|
||||
</div>
|
||||
<div class="mb-3">
|
||||
<label for="o_authorize_account_type" class="col-form-label">Bank Account Type</label>
|
||||
<select id="o_authorize_account_type" required="" class="form-select">
|
||||
<option value="checking">Personal Checking</option>
|
||||
<option value="savings">Personal Savings</option>
|
||||
<option value="businessChecking">Business Checking</option>
|
||||
</select>
|
||||
</div>
|
||||
</t>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_provider_form" model="ir.ui.view">
|
||||
<field name="name">Authorize.Net 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 != 'authorize'">
|
||||
<field name="authorize_login" required="code == 'authorize' and state != 'disabled'"/>
|
||||
<field name="authorize_transaction_key" password="True" required="code == 'authorize' and state != 'disabled'"/>
|
||||
<field name="authorize_signature_key" password="True" required="code == 'authorize' and state != 'disabled'"/>
|
||||
<label for="authorize_client_key"/>
|
||||
<div class="o_row" col="2">
|
||||
<field name="authorize_client_key"/>
|
||||
<button class="oe_link" icon="fa-refresh" type="object"
|
||||
name="action_update_merchant_details"
|
||||
string="Generate Client Key"/>
|
||||
</div>
|
||||
<widget colspan="2" name="documentation_link" path="/applications/finance/payment_providers/authorize.html" label="How to get paid with Authorize.Net"/>
|
||||
</group>
|
||||
</group>
|
||||
<div name="available_currencies" position="inside">
|
||||
<button string="Set Account Currency"
|
||||
type="object"
|
||||
name="action_update_merchant_details"
|
||||
invisible="code != 'authorize'"
|
||||
icon="fa-refresh"
|
||||
class="oe_link"/>
|
||||
</div>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_token_form" model="ir.ui.view">
|
||||
<field name="name">Authorize.Net Token Form</field>
|
||||
<field name="model">payment.token</field>
|
||||
<field name="inherit_id" ref="payment.payment_token_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<field name="provider_ref" position="after">
|
||||
<field name="provider_code" invisible="1"/>
|
||||
<field name="authorize_profile" invisible="provider_code != 'authorize'"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
||||
Loading…
Add table
Add a link
Reference in a new issue