Начальное наполнение
This commit is contained in:
parent
696a40d38a
commit
a259fc6523
27
README.md
27
README.md
@ -1,2 +1,27 @@
|
||||
# payment_aps
|
||||
# Amazon payment Services
|
||||
|
||||
## Implementation details
|
||||
|
||||
### Supported features
|
||||
|
||||
- Payment with redirection flow
|
||||
- Payment by several global and local credit
|
||||
[cards](https://paymentservices.amazon.com/docs/EN/24a.html).
|
||||
- [Webhook](https://paymentservices-reference.payfort.com/docs/api/build/index.html#transaction-feedback)
|
||||
|
||||
### API and gateway
|
||||
|
||||
We choose to integrate with the
|
||||
[Redirection](https://paymentservices-reference.payfort.com/docs/api/build/index.html#redirection)
|
||||
API as it is the gateway that covers the best our needs, out of the three that Amazon Payment
|
||||
Services offers as of July 2022. See the task's dev notes for the details on the other gateways.
|
||||
|
||||
## Merge details
|
||||
|
||||
The first version of the module was specified in task
|
||||
[2802678](https://www.odoo.com/web#id=2802678&model=project.task) and merged with PR odoo/odoo#95860
|
||||
in `saas-15.5`.
|
||||
|
||||
## Testing instructions
|
||||
|
||||
https://paymentservices.amazon.com/docs/EN/12.html
|
14
__init__.py
Normal file
14
__init__.py
Normal file
@ -0,0 +1,14 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
||||
from odoo.addons.payment import setup_provider, reset_payment_provider
|
||||
|
||||
|
||||
def post_init_hook(env):
|
||||
setup_provider(env, 'aps')
|
||||
|
||||
|
||||
def uninstall_hook(env):
|
||||
reset_payment_provider(env, 'aps')
|
19
__manifest__.py
Normal file
19
__manifest__.py
Normal file
@ -0,0 +1,19 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': "Payment Provider: Amazon Payment Services",
|
||||
'version': '1.0',
|
||||
'category': 'Accounting/Payment Providers',
|
||||
'sequence': 350,
|
||||
'summary': "An Amazon payment provider covering the MENA region.",
|
||||
'depends': ['payment'],
|
||||
'data': [
|
||||
'views/payment_aps_templates.xml',
|
||||
'views/payment_provider_views.xml',
|
||||
|
||||
'data/payment_provider_data.xml',
|
||||
],
|
||||
'post_init_hook': 'post_init_hook',
|
||||
'uninstall_hook': 'uninstall_hook',
|
||||
'license': 'LGPL-3',
|
||||
}
|
19
const.py
Normal file
19
const.py
Normal file
@ -0,0 +1,19 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
# Mapping of transaction states to APS payment statuses.
|
||||
# See https://paymentservices-reference.payfort.com/docs/api/build/index.html#transactions-response-codes.
|
||||
PAYMENT_STATUS_MAPPING = {
|
||||
'pending': ('19',),
|
||||
'done': ('14',),
|
||||
}
|
||||
|
||||
# The codes of the payment methods to activate when APS is activated.
|
||||
DEFAULT_PAYMENT_METHODS_CODES = [
|
||||
# Primary payment methods.
|
||||
'card',
|
||||
# Brand payment methods.
|
||||
'visa',
|
||||
'mastercard',
|
||||
'amex',
|
||||
'discover',
|
||||
]
|
3
controllers/__init__.py
Normal file
3
controllers/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
95
controllers/main.py
Normal file
95
controllers/main.py
Normal file
@ -0,0 +1,95 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import hmac
|
||||
import logging
|
||||
import pprint
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo import http
|
||||
from odoo.exceptions import ValidationError
|
||||
from odoo.http import request
|
||||
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class APSController(http.Controller):
|
||||
_return_url = '/payment/aps/return'
|
||||
_webhook_url = '/payment/aps/webhook'
|
||||
|
||||
@http.route(
|
||||
_return_url, type='http', auth='public', methods=['POST'], csrf=False, save_session=False
|
||||
)
|
||||
def aps_return_from_checkout(self, **data):
|
||||
""" Process the notification data sent by APS after redirection.
|
||||
|
||||
The route is flagged with `save_session=False` to prevent Odoo from assigning a new session
|
||||
to the user if they are redirected to this route with a POST request. Indeed, as the session
|
||||
cookie is created without a `SameSite` attribute, some browsers that don't implement the
|
||||
recommended default `SameSite=Lax` behavior will not include the cookie in the redirection
|
||||
request from the payment provider to Odoo. As the redirection to the '/payment/status' page
|
||||
will satisfy any specification of the `SameSite` attribute, the session of the user will be
|
||||
retrieved and with it the transaction which will be immediately post-processed.
|
||||
|
||||
:param dict data: The notification data.
|
||||
"""
|
||||
_logger.info("Handling redirection from APS with data:\n%s", pprint.pformat(data))
|
||||
|
||||
# Check the integrity of the notification.
|
||||
tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data(
|
||||
'aps', data
|
||||
)
|
||||
self._verify_notification_signature(data, tx_sudo)
|
||||
|
||||
# Handle the notification data.
|
||||
tx_sudo._handle_notification_data('aps', data)
|
||||
return request.redirect('/payment/status')
|
||||
|
||||
@http.route(_webhook_url, type='http', auth='public', methods=['POST'], csrf=False)
|
||||
def aps_webhook(self, **data):
|
||||
""" Process the notification data sent by APS to the webhook.
|
||||
|
||||
See https://paymentservices-reference.payfort.com/docs/api/build/index.html#transaction-feedback.
|
||||
|
||||
:param dict data: The notification data.
|
||||
:return: The 'SUCCESS' string to acknowledge the notification
|
||||
:rtype: str
|
||||
"""
|
||||
_logger.info("Notification received from APS with data:\n%s", pprint.pformat(data))
|
||||
try:
|
||||
# Check the integrity of the notification.
|
||||
tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data(
|
||||
'aps', data
|
||||
)
|
||||
self._verify_notification_signature(data, tx_sudo)
|
||||
|
||||
# Handle the notification data.
|
||||
tx_sudo._handle_notification_data('aps', data)
|
||||
except ValidationError: # Acknowledge the notification to avoid getting spammed.
|
||||
_logger.exception("Unable to handle the notification data; skipping to acknowledge.")
|
||||
|
||||
return '' # Acknowledge the notification.
|
||||
|
||||
@staticmethod
|
||||
def _verify_notification_signature(notification_data, tx_sudo):
|
||||
""" Check that the received signature matches the expected one.
|
||||
|
||||
:param dict notification_data: The notification data
|
||||
:param recordset tx_sudo: The sudoed transaction referenced by the notification data, as a
|
||||
`payment.transaction` record
|
||||
:return: None
|
||||
:raise: :class:`werkzeug.exceptions.Forbidden` if the signatures don't match
|
||||
"""
|
||||
received_signature = notification_data.get('signature')
|
||||
if not received_signature:
|
||||
_logger.warning("received notification with missing signature")
|
||||
raise Forbidden()
|
||||
|
||||
# Compare the received signature with the expected signature computed from the data.
|
||||
expected_signature = tx_sudo.provider_id._aps_calculate_signature(
|
||||
notification_data, incoming=True
|
||||
)
|
||||
if not hmac.compare_digest(received_signature, expected_signature):
|
||||
_logger.warning("received notification with invalid signature")
|
||||
raise Forbidden()
|
6
data/neutralize.sql
Normal file
6
data/neutralize.sql
Normal file
@ -0,0 +1,6 @@
|
||||
-- disable aps payment provider
|
||||
UPDATE payment_provider
|
||||
SET aps_merchant_identifier = NULL,
|
||||
aps_access_code = NULL,
|
||||
aps_sha_request = NULL,
|
||||
aps_sha_response = NULL;
|
9
data/payment_provider_data.xml
Normal file
9
data/payment_provider_data.xml
Normal file
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="payment.payment_provider_aps" model="payment.provider">
|
||||
<field name="code">aps</field>
|
||||
<field name="redirect_form_view_id" ref="redirect_form"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
124
i18n/ar.po
Normal file
124
i18n/ar.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "كود الوصول إلى APS "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "معرّف تاجر APS "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "عبارة طلب APS SHA "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "عبارة رد APS SHA "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "رمز الوصول "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "خدمات دفع Amazon "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "رمز "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "معرّف التاجر "
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "لم يتم العثور على معاملة تطابق المرجع %s. "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "مزود الدفع "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "معاملة الدفع "
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "تم استلام البيانات دون حالة الدفع. "
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "تم استلام البيانات دون مرجع %(ref)s. "
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "تم استلام حالة معاملة غير صالحة %(status)s والسبب \"%(reason)s\". "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "عبارة طلب SHA "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "عبارة رد SHA "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "رمز الوصول المرتبط بحساب التاجر. "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "كود حساب التاجر لاستخدامه مع مزود الدفع هذا. "
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "الكود التقني لمزود الدفع هذا. "
|
126
i18n/bg.po
Normal file
126
i18n/bg.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Turhan Aydin <taydin@unionproject.eu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Turhan Aydin <taydin@unionproject.eu>, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не е открита транзакция, съответстваща с референция %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Доставчик на разплащания"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платежна транзакция"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
128
i18n/ca.po
Normal file
128
i18n/ca.po
Normal file
@ -0,0 +1,128 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Guspy12, 2023
|
||||
# marcescu, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Serveis de pagament d'Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No s'ha trobat cap transacció que coincideixi amb la referència %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveïdor de pagament"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacció de pagament"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Dades rebudes amb estat de pagament absent."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El codi tècnic d'aquest proveïdor de pagaments."
|
125
i18n/cs.po
Normal file
125
i18n/cs.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nebyla nalezena žádná transakce odpovídající odkazu %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Poskytovatel platby"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platební transakce"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
125
i18n/da.po
Normal file
125
i18n/da.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalingsudbyder"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaktion"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
126
i18n/de.po
Normal file
126
i18n/de.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APS-Zugriffscode"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APS-Händlerkennung"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS-SHA-Anfragesatz"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS-SHA-Antwortsatz"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Zugriffscode"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon Payment Services"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Händlerkennung"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Keine Transaktion gefunden, die der Referenz %s entspricht."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Zahlungsanbieter"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Zahlungstransaktion"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Erhaltene Daten mit fehlendem Zahlungsstatus."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Erhaltene Daten mit fehlender Referenz %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Ungültigen Transaktionsstatus %(status)s und Grund „%(reason)s“ erhalten."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA-Anfragesatz"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHA-Antwortsatz"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Der mit dem Händlerkonto verknüpfte Zugriffscode."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
"Der Code des Händlerkontos, das mit diesem Anbieter verwendet werden soll."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Der technische Code dieses Zahlungsanbieters."
|
129
i18n/es.po
Normal file
129
i18n/es.po
Normal file
@ -0,0 +1,129 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Código de acceso APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Identificador de vendedor APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Frase de solicitud SHA APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Frase de respuesta SHA APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Código de acceso"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Servicios de pago de Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Identificador del vendedor"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
"No se ha encontrado ninguna transacción que coincida con la referencia %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Datos recibidos con estado de pago pendiente."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Se recibió información con la referencia faltante %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Se recibió un estado de transacción que no es válido %(status)s y el motivo "
|
||||
"'%(reason)s'."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Frase de solicitud SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Frase de respuesta SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "El código de acceso asociado a la cuenta de vendedor."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
"El código de la cuenta de vendedor que se debe de usar con este proveedor."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El código técnico de este proveedor de pagos."
|
129
i18n/es_419.po
Normal file
129
i18n/es_419.po
Normal file
@ -0,0 +1,129 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Código de acceso APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Identificador de comerciante APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Frase de solicitud SHA APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Frase de respuesta SHA APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Código de acceso"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon Payment Services"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Identificador del comerciante"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No se encontró ninguna transacción que coincida con la referencia %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Datos recibidos con estado de pago pendiente."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Se recibió información con la referencia faltante %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Se recibió un estado de transacción que no es válido %(status)s y el motivo "
|
||||
"'%(reason)s'."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Frase de solicitud SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Frase de respuesta SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "El código de acceso asociado a la cuenta de vendedor."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
"El código de la cuenta de comerciante que se debe de usar con este "
|
||||
"proveedor."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El código técnico de este proveedor de pagos."
|
127
i18n/et.po
Normal file
127
i18n/et.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Marek Pontus, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Anna, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazoni makseteenused"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kood"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Makseteenuse pakkuja"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksetehing"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Antud makseteenuse pakkuja tehniline kood."
|
125
i18n/fa.po
Normal file
125
i18n/fa.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# odooers ir, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "کد"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "سرویس دهنده پرداخت"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "تراکنش پرداخت"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
126
i18n/fi.po
Normal file
126
i18n/fi.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2024\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazonin maksupalvelut"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Viitettä %s vastaavaa tapahtumaa ei löytynyt."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksupalveluntarjoaja"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksutapahtuma"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Vastaanotetut tiedot, joista puuttuu maksutila."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Tämän maksupalveluntarjoajan tekninen koodi."
|
126
i18n/fr.po
Normal file
126
i18n/fr.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Code d'accès APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Identifiant marchand APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Phrase de demande SHA APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Phrase de réponse SHA APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Code d'accès"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon Payment Services"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Identifiant marchand"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Aucune transaction ne correspond à la référence %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fournisseur de paiement"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaction de paiement"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Données reçues avec un statut de paiement manquant."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Données reçues avec une référence manquante %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Réception d'un statut de transaction %(status)s et d'un motif '%(reason)s' "
|
||||
"invalides."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Phrase de demande SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Phrase de réponse SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Le code d'accès associé au compte marchand."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "Le code du compte marchand à utiliser avec ce fournisseur."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Le code technique de ce fournisseur de paiement."
|
126
i18n/he.po
Normal file
126
i18n/he.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "קוד"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "לא נמצאה עסקה המתאימה למספר האסמכתא %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "עסקת תשלום"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
125
i18n/hu.po
Normal file
125
i18n/hu.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fizetési szolgáltató"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Fizetési tranzakció"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
124
i18n/id.po
Normal file
124
i18n/id.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Kode Akses APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Pengidentifikasi Pedagang APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Request Phrase APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Response Phrase APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Kode Akses"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Layanan Amazon Payment"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Pengidentifikasi Pedagang"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Tidak ada transaksi dengan referensi %s yang cocok."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Penyedia Pembayaran"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaksi Tagihan"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Menerima data dengan status pembayaran yang hilang."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Menerima data dengan referensi %(ref)s yang hilang."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "Menerima status tidak valid %(status)s dan alasan '%(reason)s'."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Request Phrase SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Response Phrase SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Kode akses yang terkait dengan akun pedagang."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "Kode akun pedagang untuk digunakan dengan penyedia ini."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kode teknis penyedia pembayaran ini."
|
126
i18n/it.po
Normal file
126
i18n/it.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Codice di accesso APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Identificativo commerciante APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS frase di richiesta SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS frase di risposta SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Codice di accesso"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Servizi di pagamento Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Identificativo commerciante"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nessuna transazione trovata corrispondente al riferimento %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fornitore di pagamenti"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transazione di pagamento"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Dati ricevuti con stato di pagamento mancante."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Dati ricevuti privi di riferimento %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Stato transazione %(status)s e ragione '%(reason)s' ricevuti non validi."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Frase di richiesta SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Frase di risposta SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Il codice di accesso associate all'account del commerciante."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
"Il codice del conto del commerciante da utilizzare con questo fornitore."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Codice tecnico del fornitore di pagamenti."
|
124
i18n/ja.po
Normal file
124
i18n/ja.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APSアクセスコード"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APSマーチャント識別子"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS SHA 要求フレーズ"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS SHAレスポンスフレーズ"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "アクセスコード"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon決済サービス"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "マーチャント識別子"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "参照に一致する取引が見つかりません%s。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "決済プロバイダー"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "決済トランザクション"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "支払ステータスが欠落している受信データ"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "参照%(ref)sが欠落しているデータを受信しました。"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "無効な取引ステータス%(status)sおよび理由'%(reason)s'を受信しました。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA要求フレーズ"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHAレスポンスフレーズ"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "マーチャントアカウントと関連したアクセスコード"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "このプロバイダを使用するマーチャントアカウント"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "この決済プロバイダーのテクニカルコード。"
|
124
i18n/ko.po
Normal file
124
i18n/ko.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APS 액세스 코드"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APS 판매자 식별 기호"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS SHA 요청 문구"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS SHA 요청 문구"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "액세스 코드"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon 결제 서비스"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "코드"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "판매자 식별 기호"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "%s 참조와 일치하는 거래 항목이 없습니다."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "결제대행업체"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "지불 거래"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "결제 상태가 누락된 데이터가 수신되었습니다. "
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "참조 %(ref)s가 누락된 데이터가 수신되었습니다."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "잘못된 거래 상태 %(status)s와 사유 '%(reason)s'가 수신되었습니다."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA 요청 문구"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHA 요청 문구"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "판매자 계정과 연결된 액세스 코드입니다."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "이 공급업체에서 사용할 판매자 계정 코드입니다."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "이 결제대행업체의 기술 코드입니다."
|
125
i18n/lt.po
Normal file
125
i18n/lt.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kodas"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Mokėjimo operacija"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
126
i18n/lv.po
Normal file
126
i18n/lv.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Arnis Putniņš <arnis@allegro.lv>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kods"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksājumu sniedzējs"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksājuma darījums"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
127
i18n/nl.po
Normal file
127
i18n/nl.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APS toegangscode"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APS handelaars-ID"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS SHA Request Phrase"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS SHA Response Phrase"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Toegangscode"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon-betalingsservices"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Handelaars-ID"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Geen transactie gevonden die overeenkomt met referentie %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betaalprovider"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransactie"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Gegevens ontvangen met ontbrekende betalingsstatus."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Gegevens ontvangen met ontbrekende referentie %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Ongeldige transactiestatus %(status)s en reden '%(reason)s' ontvangen."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA Request Phrase"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHA Response Phrase"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "De toegangscode gekoppeld aan het handelaarsaccount."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
"De code van het handelaarsaccount die bij deze provider moet worden "
|
||||
"gebruikt."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "De technische code van deze betaalprovider."
|
120
i18n/payment_aps.pot
Normal file
120
i18n/payment_aps.pot
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
124
i18n/pl.po
Normal file
124
i18n/pl.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Usługi płatnicze Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nie znaleziono transakcji pasującej do referencji %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Dostawca Płatności"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcja płatności"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kod techniczny tego dostawcy usług płatniczych."
|
124
i18n/pt.po
Normal file
124
i18n/pt.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação de Pagamento"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
126
i18n/pt_BR.po
Normal file
126
i18n/pt_BR.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APS – Código de acesso"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APS – Identificador comercial"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS SHA – Frase de solicitação"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS SHA – Frase de resposta"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Código de acesso"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon Payment Services"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Identificador comercial"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nenhuma transação encontrada com a referência %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provedor de serviços de pagamento"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação de pagamento"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Dados recebidos sem estado de pagamento."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Dados recebidos sem a referência %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Status %(status)s e motivo '%(reason)s' de transação recebidos são "
|
||||
"inválidos."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA – Frase de solicitação"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHA – Frase de resposta"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "O código de acesso associado com a conta comercial."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "O código da conta comercial a ser usado com este provedor."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "O código técnico deste provedor de pagamento."
|
126
i18n/ru.po
Normal file
126
i18n/ru.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Код доступа APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Идентификатор торговца APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Фраза запроса APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Ответная фраза APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Пароль для входа"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Платежные сервисы Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Идентификатор торговца"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Поставщик платежей"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "платеж"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Получены данные с отсутствующим состоянием платежа."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Получены данные с отсутствующей ссылкой %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "Получен неверный статус транзакции %(status)s и причина '%(reason)s'."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Фраза запроса SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Фраза ответа SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Код доступа, связанный с торговым счетом."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "Код торгового счета для использования с данным провайдером."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технический код данного провайдера платежей."
|
124
i18n/sk.po
Normal file
124
i18n/sk.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platobná transakcia"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
125
i18n/sl.po
Normal file
125
i18n/sl.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Oznaka"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ponudnik plačil"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Plačilna transakcija"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
126
i18n/sr.po
Normal file
126
i18n/sr.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon Payment Services"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No transaction found matching reference %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provajder plaćanja"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "The technical code of this payment provider."
|
127
i18n/sv.po
Normal file
127
i18n/sv.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Lasse L, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Ingen transaktion hittades som matchar referensen %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalningsleverantör"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalningstransaktion"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Den tekniska koden för denna betalningsleverantör."
|
125
i18n/th.po
Normal file
125
i18n/th.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "รหัสการเข้าถึง APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "ตัวระบุผู้ค้า APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "คำขอ APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "คำตอบกลับ APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "รหัสการเข้าถึง"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "บริการชำระเงินของ Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "โค้ด"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "ตัวระบุผู้ขาย"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "ไม่พบธุรกรรมที่ตรงกับการอ้างอิง %s"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "ผู้ให้บริการชำระเงิน"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "ธุรกรรมสำหรับการชำระเงิน"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "ได้รับข้อมูลโดยไม่มีสถานะการชำระเงิน"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "ได้รับข้อมูลโดยไม่มีการอ้างอิง %(ref)s"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "ได้รับสถานะธุรกรรมที่ไม่ถูกต้อง %(status)s และเหตุผลคือ '%(reason)s'"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "คำขอ SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "คำตอบกลับ SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "รหัสการเข้าถึงที่เชื่อมโยงกับบัญชีผู้ค้า"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "รหัสของบัญชีผู้ค้าที่จะใช้กับผู้ให้บริการรายนี้"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้"
|
127
i18n/tr.po
Normal file
127
i18n/tr.po
Normal file
@ -0,0 +1,127 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Murat Kaplan <muratk@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon Ödeme Hizmetleri"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Referans %s eşleşen bir işlem bulunamadı."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ödeme Sağlayıcı"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Ödeme İşlemi"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Ödeme durumu eksik olan veriler alındı."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Bu ödeme sağlayıcısının teknik kodu."
|
126
i18n/uk.po
Normal file
126
i18n/uk.po
Normal file
@ -0,0 +1,126 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Код доступу APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Ідентифікатор мерчанту APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Фраза запиту APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Фраза відповіді APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Код доступу"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Платіжні послуги Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Ідентифікатор мерчанту"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не знайдено жодної транзакції, що відповідає референсу %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Провайдер платежу"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платіжна операція"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Отримані дані з відсутнім статусом платежу."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Отримані дані з відсутнім референсом %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Отримано недійсний статус транзакції %(status)s та причина '%(reason)s'."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Фраза запиту SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Фраза запиту SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Код доступу, пов’язаний з обліковим записом мерчанту."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "Код облікового запису мерчанта для використання з цим провайдером."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технічний код цього провайдера платежу."
|
125
i18n/vi.po
Normal file
125
i18n/vi.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "Mã truy cập APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "Định danh người bán APS"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "Cụm yêu cầu APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "Cụm phản hồi APS SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "Mã truy cập"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Dịch vụ thanh toán Amazon"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Mã"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "Định danh người bán"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Không tìm thấy giao dịch nào khớp với mã %s."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Nhà cung cấp dịch vụ thanh toán"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Giao dịch thanh toán"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "Dữ liệu đã nhận bị thiếu trạng thái thanh toán."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "Dữ liệu đã nhận bị thiếu mã %(ref)s."
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr ""
|
||||
"Trạng thái giao dịch không hợp lệ đã nhận %(status)s và lý do '%(reason)s'."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "Cụm yêu cầu SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "Cụm phản hồi SHA"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "Mã truy cập liên kết với tài khoản người bán."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "Mã tài khoản người bán để sử dụng với nhà cung cấp này."
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.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."
|
124
i18n/zh_CN.po
Normal file
124
i18n/zh_CN.po
Normal file
@ -0,0 +1,124 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APS 访问代码"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APS 商户识别码"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS SHA 请求语句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS SHA 响应语句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "访问代码"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon支付服务"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "代码"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "商户识别码"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "没有发现与参考文献%s相匹配的交易。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "支付交易"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "收到的数据中缺少支付状态。"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "收到的数据缺少参考编号%(ref)s。"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "收到无效交易状态%(status)s,原因 '%(reason)s'。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA 请求语句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHA 响应语句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "与商户账户相关联的访问代码。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "该提供商使用的商户账户代码。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "该支付提供商的技术代码。"
|
125
i18n/zh_TW.po
Normal file
125
i18n/zh_TW.po
Normal file
@ -0,0 +1,125 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_aps
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "APS Access Code"
|
||||
msgstr "APS 存取代碼"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "APS Merchant Identifier"
|
||||
msgstr "APS 商戶識別碼"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_request
|
||||
msgid "APS SHA Request Phrase"
|
||||
msgstr "APS SHA 請求語句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__aps_sha_response
|
||||
msgid "APS SHA Response Phrase"
|
||||
msgstr "APS SHA 回應語句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Access Code"
|
||||
msgstr "存取代碼"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields.selection,name:payment_aps.selection__payment_provider__code__aps
|
||||
msgid "Amazon Payment Services"
|
||||
msgstr "Amazon 付款服務"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,field_description:payment_aps.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "程式碼"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "Merchant Identifier"
|
||||
msgstr "商戶識別碼"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "沒有找到匹配參考 %s 的交易。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model,name:payment_aps.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "付款交易"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing payment state."
|
||||
msgstr "收到的數據中缺漏付款狀態。"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference %(ref)s."
|
||||
msgstr "收到的數據中缺漏參考編號 %(ref)s。"
|
||||
|
||||
#. module: payment_aps
|
||||
#. odoo-python
|
||||
#: code:addons/payment_aps/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'."
|
||||
msgstr "收到無效交易狀態 %(status)s,原因:%(reason)s。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Request Phrase"
|
||||
msgstr "SHA 請求語句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model_terms:ir.ui.view,arch_db:payment_aps.payment_provider_form
|
||||
msgid "SHA Response Phrase"
|
||||
msgstr "SHA 回應語句"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_access_code
|
||||
msgid "The access code associated with the merchant account."
|
||||
msgstr "與商戶賬戶相關聯的存取代碼。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__aps_merchant_identifier
|
||||
msgid "The code of the merchant account to use with this provider."
|
||||
msgstr "此服務商使用的商戶賬戶代碼。"
|
||||
|
||||
#. module: payment_aps
|
||||
#: model:ir.model.fields,help:payment_aps.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "此付款服務商的技術代碼。"
|
4
models/__init__.py
Normal file
4
models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import payment_provider
|
||||
from . import payment_transaction
|
69
models/payment_provider.py
Normal file
69
models/payment_provider.py
Normal file
@ -0,0 +1,69 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import hashlib
|
||||
import logging
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
from odoo.addons.payment_aps import const
|
||||
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PaymentProvider(models.Model):
|
||||
_inherit = 'payment.provider'
|
||||
|
||||
code = fields.Selection(
|
||||
selection_add=[('aps', "Amazon Payment Services")], ondelete={'aps': 'set default'}
|
||||
)
|
||||
aps_merchant_identifier = fields.Char(
|
||||
string="APS Merchant Identifier",
|
||||
help="The code of the merchant account to use with this provider.",
|
||||
required_if_provider='aps',
|
||||
)
|
||||
aps_access_code = fields.Char(
|
||||
string="APS Access Code",
|
||||
help="The access code associated with the merchant account.",
|
||||
required_if_provider='aps',
|
||||
groups='base.group_system',
|
||||
)
|
||||
aps_sha_request = fields.Char(
|
||||
string="APS SHA Request Phrase",
|
||||
required_if_provider='aps',
|
||||
groups='base.group_system',
|
||||
)
|
||||
aps_sha_response = fields.Char(
|
||||
string="APS SHA Response Phrase",
|
||||
required_if_provider='aps',
|
||||
groups='base.group_system',
|
||||
)
|
||||
|
||||
#=== BUSINESS METHODS ===#
|
||||
|
||||
def _aps_get_api_url(self):
|
||||
if self.state == 'enabled':
|
||||
return 'https://checkout.payfort.com/FortAPI/paymentPage'
|
||||
else: # 'test'
|
||||
return 'https://sbcheckout.payfort.com/FortAPI/paymentPage'
|
||||
|
||||
def _aps_calculate_signature(self, data, incoming=True):
|
||||
""" Compute the signature for the provided data according to the APS documentation.
|
||||
|
||||
:param dict data: The data to sign.
|
||||
:param bool incoming: Whether the signature must be generated for an incoming (APS to Odoo)
|
||||
or outgoing (Odoo to APS) communication.
|
||||
:return: The calculated signature.
|
||||
:rtype: str
|
||||
"""
|
||||
sign_data = ''.join([f'{k}={v}' for k, v in sorted(data.items()) if k != 'signature'])
|
||||
key = self.aps_sha_response if incoming else self.aps_sha_request
|
||||
signing_string = ''.join([key, sign_data, key])
|
||||
return hashlib.sha256(signing_string.encode()).hexdigest()
|
||||
|
||||
def _get_default_payment_method_codes(self):
|
||||
""" Override of `payment` to return the default payment method codes. """
|
||||
default_codes = super()._get_default_payment_method_codes()
|
||||
if self.code != 'aps':
|
||||
return default_codes
|
||||
return const.DEFAULT_PAYMENT_METHODS_CODES
|
147
models/payment_transaction.py
Normal file
147
models/payment_transaction.py
Normal file
@ -0,0 +1,147 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import logging
|
||||
|
||||
from werkzeug import urls
|
||||
|
||||
from odoo import _, api, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment_aps import utils as aps_utils
|
||||
from odoo.addons.payment_aps.const import PAYMENT_STATUS_MAPPING
|
||||
from odoo.addons.payment_aps.controllers.main import APSController
|
||||
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PaymentTransaction(models.Model):
|
||||
_inherit = 'payment.transaction'
|
||||
|
||||
@api.model
|
||||
def _compute_reference(self, provider_code, prefix=None, separator='-', **kwargs):
|
||||
""" Override of `payment` to ensure that APS' requirements for references are satisfied.
|
||||
|
||||
APS' requirements for transaction are as follows:
|
||||
- References can only be made of alphanumeric characters and/or '-' and '_'.
|
||||
The prefix is generated with 'tx' as default. This prevents the prefix from being
|
||||
generated based on document names that may contain non-allowed characters
|
||||
(eg: INV/2020/...).
|
||||
|
||||
:param str provider_code: The code of the provider handling the transaction.
|
||||
:param str prefix: The custom prefix used to compute the full reference.
|
||||
:param str separator: The custom separator used to separate the prefix from the suffix.
|
||||
:return: The unique reference for the transaction.
|
||||
:rtype: str
|
||||
"""
|
||||
if provider_code == 'aps':
|
||||
prefix = payment_utils.singularize_reference_prefix()
|
||||
|
||||
return super()._compute_reference(provider_code, prefix=prefix, separator=separator, **kwargs)
|
||||
|
||||
def _get_specific_rendering_values(self, processing_values):
|
||||
""" Override of `payment` to return APS-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
|
||||
"""
|
||||
res = super()._get_specific_rendering_values(processing_values)
|
||||
if self.provider_code != 'aps':
|
||||
return res
|
||||
|
||||
converted_amount = payment_utils.to_minor_currency_units(self.amount, self.currency_id)
|
||||
base_url = self.provider_id.get_base_url()
|
||||
payment_option = aps_utils.get_payment_option(self.payment_method_id.code)
|
||||
rendering_values = {
|
||||
'command': 'PURCHASE',
|
||||
'access_code': self.provider_id.aps_access_code,
|
||||
'merchant_identifier': self.provider_id.aps_merchant_identifier,
|
||||
'merchant_reference': self.reference,
|
||||
'amount': str(converted_amount),
|
||||
'currency': self.currency_id.name,
|
||||
'language': self.partner_lang[:2],
|
||||
'customer_email': self.partner_id.email_normalized,
|
||||
'return_url': urls.url_join(base_url, APSController._return_url),
|
||||
}
|
||||
if payment_option: # Not included if the payment method is 'card'.
|
||||
rendering_values['payment_option'] = payment_option
|
||||
rendering_values.update({
|
||||
'signature': self.provider_id._aps_calculate_signature(
|
||||
rendering_values, incoming=False
|
||||
),
|
||||
'api_url': self.provider_id._aps_get_api_url(),
|
||||
})
|
||||
return rendering_values
|
||||
|
||||
def _get_tx_from_notification_data(self, provider_code, notification_data):
|
||||
""" Override of `payment` to find the transaction based on APS data.
|
||||
|
||||
:param str provider_code: The code of the provider that handled the transaction.
|
||||
:param dict notification_data: The notification data sent by the provider.
|
||||
:return: The transaction if found.
|
||||
:rtype: recordset of `payment.transaction`
|
||||
:raise ValidationError: If inconsistent data are received.
|
||||
:raise ValidationError: If the data match no transaction.
|
||||
"""
|
||||
tx = super()._get_tx_from_notification_data(provider_code, notification_data)
|
||||
if provider_code != 'aps' or len(tx) == 1:
|
||||
return tx
|
||||
|
||||
reference = notification_data.get('merchant_reference')
|
||||
if not reference:
|
||||
raise ValidationError(
|
||||
"APS: " + _("Received data with missing reference %(ref)s.", ref=reference)
|
||||
)
|
||||
|
||||
tx = self.search([('reference', '=', reference), ('provider_code', '=', 'aps')])
|
||||
if not tx:
|
||||
raise ValidationError(
|
||||
"APS: " + _("No transaction found matching reference %s.", reference)
|
||||
)
|
||||
|
||||
return tx
|
||||
|
||||
def _process_notification_data(self, notification_data):
|
||||
""" Override of `payment' to process the transaction based on APS data.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param dict notification_data: The notification data sent by the provider.
|
||||
:return: None
|
||||
:raise ValidationError: If inconsistent data are received.
|
||||
"""
|
||||
super()._process_notification_data(notification_data)
|
||||
if self.provider_code != 'aps':
|
||||
return
|
||||
|
||||
# Update the provider reference.
|
||||
self.provider_reference = notification_data.get('fort_id')
|
||||
|
||||
# Update the payment method.
|
||||
payment_option = notification_data.get('payment_option', '')
|
||||
payment_method = self.env['payment.method']._get_from_code(payment_option.lower())
|
||||
self.payment_method_id = payment_method or self.payment_method_id
|
||||
|
||||
# Update the payment state.
|
||||
status = notification_data.get('status')
|
||||
if not status:
|
||||
raise ValidationError("APS: " + _("Received data with missing payment state."))
|
||||
if status in PAYMENT_STATUS_MAPPING['pending']:
|
||||
self._set_pending()
|
||||
elif status in PAYMENT_STATUS_MAPPING['done']:
|
||||
self._set_done()
|
||||
else: # Classify unsupported payment state as `error` tx state.
|
||||
status_description = notification_data.get('response_message')
|
||||
_logger.info(
|
||||
"Received data with invalid payment status (%(status)s) and reason '%(reason)s' "
|
||||
"for transaction with reference %(ref)s",
|
||||
{'status': status, 'reason': status_description, 'ref': self.reference},
|
||||
)
|
||||
self._set_error("APS: " + _(
|
||||
"Received invalid transaction status %(status)s and reason '%(reason)s'.",
|
||||
status=status, reason=status_description
|
||||
))
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="M40.84 38.587c-17.865 8.236-28.952 1.345-36.049-2.84-.439-.264-1.185.062-.538.782C6.619 39.306 14.366 46 24.482 46c10.12 0 16.142-5.35 16.895-6.283.748-.925.22-1.436-.536-1.13Zm5.017-2.684c-.48-.605-2.917-.718-4.45-.535-1.537.177-3.843 1.086-3.643 1.632.103.205.313.113 1.369.021 1.058-.102 4.022-.464 4.64.318.62.788-.946 4.54-1.231 5.145-.277.605.105.761.624.358.512-.403 1.44-1.446 2.061-2.923.618-1.484.995-3.555.63-4.016Z" fill="#F90"/><path d="M36.319 25.513V11.721C36.319 9.352 33.953 4 25.45 4c-8.5 0-13.023 5.146-13.023 9.782l7.105.616s1.582-4.633 5.255-4.633c3.674 0 3.422 2.882 3.422 3.505v2.997c-4.706.153-16.39 1.455-16.39 11 0 10.264 13.374 10.694 17.76 4.06.169.27.361.533.602.78 1.614 1.644 3.767 3.602 3.767 3.602l5.485-5.25c.002-.002-3.115-2.372-3.115-4.946Zm-16.252.484c0-4.408 4.876-5.302 8.144-5.407v3.794c-.001 7.517-8.144 6.38-8.144 1.613Z"/><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: 1.1 KiB |
5
tests/__init__.py
Normal file
5
tests/__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_payment_transaction
|
||||
from . import test_processing_flows
|
43
tests/common.py
Normal file
43
tests/common.py
Normal file
@ -0,0 +1,43 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.payment.tests.http_common import PaymentHttpCommon
|
||||
|
||||
|
||||
class APSCommon(PaymentHttpCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.aps = cls._prepare_provider('aps', update_values={
|
||||
'aps_merchant_identifier': '123456abc',
|
||||
'aps_access_code': 'dummy',
|
||||
'aps_sha_request': 'dummy',
|
||||
'aps_sha_response': 'dummy',
|
||||
})
|
||||
|
||||
cls.provider = cls.aps
|
||||
|
||||
cls.notification_data = {
|
||||
'access_code': cls.provider.aps_access_code,
|
||||
'amount': cls.amount,
|
||||
'authorization_code': '123456',
|
||||
'card_holder_name': 'Mitchell',
|
||||
'card_number': '************1111',
|
||||
'command': 'PURCHASE',
|
||||
'currency': 'USD',
|
||||
'customer_email': ' admin@yourcompany.example.com',
|
||||
'customer_ip': '123.456.78.90',
|
||||
'eci': 'ECOMMERCE',
|
||||
'expiry_date': '2212',
|
||||
'fort_id': '169996210006464984',
|
||||
'language': 'en',
|
||||
'merchant_identifier': cls.provider.aps_merchant_identifier,
|
||||
'merchant_reference': cls.reference,
|
||||
'payment_option': 'VISA',
|
||||
'response_code': '14000',
|
||||
'response_message': 'Success',
|
||||
'signature': '6d2bb7904ac6141a0c10375c70fd417616c740bb1ddab862a224777880aa3600',
|
||||
'status': '14',
|
||||
'token_name': '123abc456def789',
|
||||
}
|
69
tests/test_payment_transaction.py
Normal file
69
tests/test_payment_transaction.py
Normal file
@ -0,0 +1,69 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment_aps.controllers.main import APSController
|
||||
from odoo.addons.payment_aps.tests.common import APSCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestPaymentTransaction(APSCommon):
|
||||
|
||||
def test_reference_contains_only_valid_characters(self):
|
||||
""" Test that transaction references are made of only alphanumerics and/or '-' and '_'. """
|
||||
for prefix in (None, '', 'S0001', 'INV/20222/001', 'dummy ref'):
|
||||
reference = self.env['payment.transaction']._compute_reference('aps', prefix=prefix)
|
||||
self.assertRegex(reference, r'^[\w-]+$')
|
||||
|
||||
def test_no_item_missing_from_rendering_values(self):
|
||||
""" Test that the rendered values are conform to the transaction fields. """
|
||||
tx = self._create_transaction(flow='redirect')
|
||||
|
||||
converted_amount = payment_utils.to_minor_currency_units(self.amount, self.currency)
|
||||
expected_values = {
|
||||
'command': 'PURCHASE',
|
||||
'access_code': self.provider.aps_access_code,
|
||||
'merchant_identifier': self.provider.aps_merchant_identifier,
|
||||
'merchant_reference': tx.reference,
|
||||
'payment_option': 'UNKNOWN',
|
||||
'amount': str(converted_amount),
|
||||
'currency': self.currency.name,
|
||||
'language': tx.partner_lang[:2],
|
||||
'customer_email': tx.partner_id.email_normalized,
|
||||
'return_url': self._build_url(APSController._return_url),
|
||||
'signature': 'c9b9f35a607606c045f8882e762a4a4a35572cf230fe1cd45fa18d7c8681aeb9',
|
||||
'api_url': self.provider._aps_get_api_url(),
|
||||
}
|
||||
self.assertDictEqual(tx._get_specific_rendering_values(None), expected_values)
|
||||
|
||||
@mute_logger('odoo.addons.payment.models.payment_transaction')
|
||||
def test_no_input_missing_from_redirect_form(self):
|
||||
""" Test that the no key is not omitted from the rendering values. """
|
||||
tx = self._create_transaction(flow='redirect')
|
||||
expected_input_keys = [
|
||||
'command',
|
||||
'access_code',
|
||||
'merchant_identifier',
|
||||
'merchant_reference',
|
||||
'amount',
|
||||
'currency',
|
||||
'language',
|
||||
'customer_email',
|
||||
'signature',
|
||||
'payment_option',
|
||||
'return_url',
|
||||
]
|
||||
processing_values = tx._get_processing_values()
|
||||
form_info = self._extract_values_from_html_form(processing_values['redirect_form_html'])
|
||||
self.assertEqual(form_info['action'], 'https://sbcheckout.payfort.com/FortAPI/paymentPage')
|
||||
self.assertEqual(form_info['method'], 'post')
|
||||
self.assertListEqual(list(form_info['inputs'].keys()), expected_input_keys)
|
||||
|
||||
def test_processing_notification_data_confirms_transaction(self):
|
||||
""" Test that the transaction state is set to 'done' when the notification data indicate a
|
||||
successful payment. """
|
||||
tx = self._create_transaction(flow='redirect')
|
||||
tx._process_notification_data(self.notification_data)
|
||||
self.assertEqual(tx.state, 'done')
|
94
tests/test_processing_flows.py
Normal file
94
tests/test_processing_flows.py
Normal file
@ -0,0 +1,94 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from unittest.mock import patch
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment_aps.controllers.main import APSController
|
||||
from odoo.addons.payment_aps.tests.common import APSCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestProcessingFlows(APSCommon):
|
||||
|
||||
@mute_logger('odoo.addons.payment_aps.controllers.main')
|
||||
def test_redirect_notification_triggers_processing(self):
|
||||
""" Test that receiving a redirect notification triggers the processing of the notification
|
||||
data. """
|
||||
self._create_transaction(flow='redirect')
|
||||
url = self._build_url(APSController._return_url)
|
||||
with patch(
|
||||
'odoo.addons.payment_aps.controllers.main.APSController._verify_notification_signature'
|
||||
), patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction'
|
||||
'._handle_notification_data'
|
||||
) as handle_notification_data_mock:
|
||||
self._make_http_post_request(url, data=self.notification_data)
|
||||
self.assertEqual(handle_notification_data_mock.call_count, 1)
|
||||
|
||||
@mute_logger('odoo.addons.payment_aps.controllers.main')
|
||||
def test_webhook_notification_triggers_processing(self):
|
||||
""" Test that receiving a valid webhook notification triggers the processing of the
|
||||
notification data. """
|
||||
self._create_transaction('redirect')
|
||||
url = self._build_url(APSController._webhook_url)
|
||||
with patch(
|
||||
'odoo.addons.payment_aps.controllers.main.APSController._verify_notification_signature'
|
||||
), patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction'
|
||||
'._handle_notification_data'
|
||||
) as handle_notification_data_mock:
|
||||
self._make_http_post_request(url, data=self.notification_data)
|
||||
self.assertEqual(handle_notification_data_mock.call_count, 1)
|
||||
|
||||
@mute_logger('odoo.addons.payment_aps.controllers.main')
|
||||
def test_redirect_notification_triggers_signature_check(self):
|
||||
""" Test that receiving a redirect notification triggers a signature check. """
|
||||
self._create_transaction('redirect')
|
||||
url = self._build_url(APSController._return_url)
|
||||
with patch(
|
||||
'odoo.addons.payment_aps.controllers.main.APSController._verify_notification_signature'
|
||||
) as signature_check_mock, patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction'
|
||||
'._handle_notification_data'
|
||||
):
|
||||
self._make_http_post_request(url, data=self.notification_data)
|
||||
self.assertEqual(signature_check_mock.call_count, 1)
|
||||
|
||||
@mute_logger('odoo.addons.payment_aps.controllers.main')
|
||||
def test_webhook_notification_triggers_signature_check(self):
|
||||
""" Test that receiving a webhook notification triggers a signature check. """
|
||||
self._create_transaction('redirect')
|
||||
url = self._build_url(APSController._webhook_url)
|
||||
with patch(
|
||||
'odoo.addons.payment_aps.controllers.main.APSController._verify_notification_signature'
|
||||
) as signature_check_mock, patch(
|
||||
'odoo.addons.payment.models.payment_transaction.PaymentTransaction'
|
||||
'._handle_notification_data'
|
||||
):
|
||||
self._make_http_post_request(url, data=self.notification_data)
|
||||
self.assertEqual(signature_check_mock.call_count, 1)
|
||||
|
||||
def test_accept_notification_with_valid_signature(self):
|
||||
""" Test the verification of a notification with a valid signature. """
|
||||
tx = self._create_transaction('redirect')
|
||||
self._assert_does_not_raise(
|
||||
Forbidden, APSController._verify_notification_signature, self.notification_data, tx
|
||||
)
|
||||
|
||||
@mute_logger('odoo.addons.payment_aps.controllers.main')
|
||||
def test_reject_notification_with_missing_signature(self):
|
||||
""" Test the verification of a notification with a missing signature. """
|
||||
tx = self._create_transaction('redirect')
|
||||
payload = dict(self.notification_data, signature=None)
|
||||
self.assertRaises(Forbidden, APSController._verify_notification_signature, payload, tx)
|
||||
|
||||
@mute_logger('odoo.addons.payment_aps.controllers.main')
|
||||
def test_reject_notification_with_invalid_signature(self):
|
||||
""" Test the verification of a notification with an invalid signature. """
|
||||
tx = self._create_transaction('redirect')
|
||||
payload = dict(self.notification_data, signature='dummy')
|
||||
self.assertRaises(Forbidden, APSController._verify_notification_signature, payload, tx)
|
14
utils.py
Normal file
14
utils.py
Normal file
@ -0,0 +1,14 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
def get_payment_option(payment_method_code):
|
||||
""" Map the payment method code to one of the payment options expected by APS.
|
||||
|
||||
As APS expects the specific card brand (e.g, VISA) rather than the generic 'card' option, we
|
||||
skip the mapping and return an empty string when the provided payment method code is 'card'.
|
||||
This allows the user to select the desired brand on APS' checkout page.
|
||||
|
||||
:param str payment_method_code: The code of the payment method.
|
||||
:return: The corresponding APS' payment option.
|
||||
:rtype: str
|
||||
"""
|
||||
return payment_method_code.upper() if payment_method_code != 'card' else ''
|
20
views/payment_aps_templates.xml
Normal file
20
views/payment_aps_templates.xml
Normal file
@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="redirect_form">
|
||||
<form t-att-action="api_url" method="post">
|
||||
<input type="hidden" name="command" t-att-value="command"/>
|
||||
<input type="hidden" name="access_code" t-att-value="access_code"/>
|
||||
<input type="hidden" name="merchant_identifier" t-att-value="merchant_identifier"/>
|
||||
<input type="hidden" name="merchant_reference" t-att-value="merchant_reference"/>
|
||||
<input type="hidden" name="amount" t-att-value="amount"/>
|
||||
<input type="hidden" name="currency" t-att-value="currency"/>
|
||||
<input type="hidden" name="language" t-att-value="language"/>
|
||||
<input type="hidden" name="customer_email" t-att-value="customer_email"/>
|
||||
<input type="hidden" name="signature" t-att-value="signature"/>
|
||||
<input type="hidden" name="payment_option" t-att-value="payment_option" t-if="payment_option"/>
|
||||
<input type="hidden" name="return_url" t-att-value="return_url"/>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
</odoo>
|
31
views/payment_provider_views.xml
Normal file
31
views/payment_provider_views.xml
Normal file
@ -0,0 +1,31 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_provider_form" model="ir.ui.view">
|
||||
<field name="name">APS 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 != 'aps'">
|
||||
<field name="aps_merchant_identifier"
|
||||
string="Merchant Identifier"
|
||||
required="code == 'aps' and state != 'disabled'"/>
|
||||
<field name="aps_access_code"
|
||||
string="Access Code"
|
||||
required="code == 'aps' and state != 'disabled'"
|
||||
password="True"/>
|
||||
<field name="aps_sha_request"
|
||||
string="SHA Request Phrase"
|
||||
required="code == 'aps' and state != 'disabled'"
|
||||
password="True"/>
|
||||
<field name="aps_sha_response"
|
||||
string="SHA Response Phrase"
|
||||
required="code == 'aps' and state != 'disabled'"
|
||||
password="True"/>
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user