From 3aa41f6490f4a3343ad317e19b49ed366e9c61cd Mon Sep 17 00:00:00 2001 From: Sergey Krylov Date: Mon, 24 Feb 2025 15:53:01 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=BD=D0=B0=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 37 +++++- __init__.py | 14 +++ __manifest__.py | 19 +++ const.py | 152 +++++++++++++++++++++++ controllers/__init__.py | 3 + controllers/main.py | 75 +++++++++++ data/neutralize.sql | 5 + data/payment_provider_data.xml | 9 ++ i18n/ar.po | 181 +++++++++++++++++++++++++++ i18n/bg.po | 181 +++++++++++++++++++++++++++ i18n/ca.po | 184 +++++++++++++++++++++++++++ i18n/cs.po | 180 +++++++++++++++++++++++++++ i18n/da.po | 180 +++++++++++++++++++++++++++ i18n/de.po | 183 +++++++++++++++++++++++++++ i18n/es.po | 184 +++++++++++++++++++++++++++ i18n/es_419.po | 183 +++++++++++++++++++++++++++ i18n/et.po | 183 +++++++++++++++++++++++++++ i18n/fa.po | 181 +++++++++++++++++++++++++++ i18n/fi.po | 181 +++++++++++++++++++++++++++ i18n/fr.po | 183 +++++++++++++++++++++++++++ i18n/he.po | 182 +++++++++++++++++++++++++++ i18n/hu.po | 182 +++++++++++++++++++++++++++ i18n/id.po | 182 +++++++++++++++++++++++++++ i18n/it.po | 183 +++++++++++++++++++++++++++ i18n/ja.po | 179 ++++++++++++++++++++++++++ i18n/ko.po | 179 ++++++++++++++++++++++++++ i18n/lt.po | 180 +++++++++++++++++++++++++++ i18n/lv.po | 181 +++++++++++++++++++++++++++ i18n/nl.po | 183 +++++++++++++++++++++++++++ i18n/payment_asiapay.pot | 175 ++++++++++++++++++++++++++ i18n/pl.po | 179 ++++++++++++++++++++++++++ i18n/pt.po | 179 ++++++++++++++++++++++++++ i18n/pt_BR.po | 183 +++++++++++++++++++++++++++ i18n/ru.po | 186 ++++++++++++++++++++++++++++ i18n/sk.po | 179 ++++++++++++++++++++++++++ i18n/sl.po | 181 +++++++++++++++++++++++++++ i18n/sr.po | 181 +++++++++++++++++++++++++++ i18n/sv.po | 182 +++++++++++++++++++++++++++ i18n/th.po | 182 +++++++++++++++++++++++++++ i18n/tr.po | 183 +++++++++++++++++++++++++++ i18n/uk.po | 184 +++++++++++++++++++++++++++ i18n/vi.po | 182 +++++++++++++++++++++++++++ i18n/zh_CN.po | 180 +++++++++++++++++++++++++++ i18n/zh_TW.po | 180 +++++++++++++++++++++++++++ models/__init__.py | 4 + models/payment_provider.py | 97 +++++++++++++++ models/payment_transaction.py | 174 ++++++++++++++++++++++++++ static/description/icon.png | Bin 0 -> 1302 bytes static/description/icon.svg | 1 + tests/__init__.py | 6 + tests/common.py | 37 ++++++ tests/test_payment_provider.py | 39 ++++++ tests/test_payment_transaction.py | 99 +++++++++++++++ tests/test_processing_flows.py | 71 +++++++++++ views/payment_asiapay_templates.xml | 21 ++++ views/payment_provider_views.xml | 30 +++++ 56 files changed, 7423 insertions(+), 1 deletion(-) create mode 100644 __init__.py create mode 100644 __manifest__.py create mode 100644 const.py create mode 100644 controllers/__init__.py create mode 100644 controllers/main.py create mode 100644 data/neutralize.sql create mode 100644 data/payment_provider_data.xml create mode 100644 i18n/ar.po create mode 100644 i18n/bg.po create mode 100644 i18n/ca.po create mode 100644 i18n/cs.po create mode 100644 i18n/da.po create mode 100644 i18n/de.po create mode 100644 i18n/es.po create mode 100644 i18n/es_419.po create mode 100644 i18n/et.po create mode 100644 i18n/fa.po create mode 100644 i18n/fi.po create mode 100644 i18n/fr.po create mode 100644 i18n/he.po create mode 100644 i18n/hu.po create mode 100644 i18n/id.po create mode 100644 i18n/it.po create mode 100644 i18n/ja.po create mode 100644 i18n/ko.po create mode 100644 i18n/lt.po create mode 100644 i18n/lv.po create mode 100644 i18n/nl.po create mode 100644 i18n/payment_asiapay.pot create mode 100644 i18n/pl.po create mode 100644 i18n/pt.po create mode 100644 i18n/pt_BR.po create mode 100644 i18n/ru.po create mode 100644 i18n/sk.po create mode 100644 i18n/sl.po create mode 100644 i18n/sr.po create mode 100644 i18n/sv.po create mode 100644 i18n/th.po create mode 100644 i18n/tr.po create mode 100644 i18n/uk.po create mode 100644 i18n/vi.po create mode 100644 i18n/zh_CN.po create mode 100644 i18n/zh_TW.po create mode 100644 models/__init__.py create mode 100644 models/payment_provider.py create mode 100644 models/payment_transaction.py create mode 100644 static/description/icon.png create mode 100644 static/description/icon.svg create mode 100644 tests/__init__.py create mode 100644 tests/common.py create mode 100644 tests/test_payment_provider.py create mode 100644 tests/test_payment_transaction.py create mode 100644 tests/test_processing_flows.py create mode 100644 views/payment_asiapay_templates.xml create mode 100644 views/payment_provider_views.xml diff --git a/README.md b/README.md index 88a68a7..a6c0cb5 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,37 @@ -# payment_asiapay +# AsiaPay +## Implementation details + +### Supported features + +- Payment with redirection flow. +- Webhook. +- Several payment methods including credit cards, chinese payment methods such as Alipay, and + [others](https://www.asiapay.com/payment.html#option). + +In addition, AsiaPay also allows to implement manual capture, refunds, express checkout, and +multi-currency processing. + +### API and gateway + +We choose to integrate with the Client Post Through Browser gateway which covers the best our needs, +out of the three that AsiaPay offers as of August 2022. + +The entire API reference and the integration guides can be found on the [Integration Guide] +(https://www.paydollar.com/pdf/op/enpdintguide.pdf). + +The version of the API implemented by this module is v3.67. + +## Merge details + +The first version of the module was specified in task +[2845428](https://www.odoo.com/web#id=2845428&model=project.task) and merged with PR +odoo/odoo#98441 in `saas-15.5`. + +## Testing instructions + +Card Number: `4335900000140045` +Expiry Date: `07/2030` +Name: `testing card` +CVC: `123` +3DS Password: `password` diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..7af3c41 --- /dev/null +++ b/__init__.py @@ -0,0 +1,14 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models + +from odoo.addons.payment import setup_provider, reset_payment_provider + + +def post_init_hook(env): + setup_provider(env, 'asiapay') + + +def uninstall_hook(env): + reset_payment_provider(env, 'asiapay') diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..8794073 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,19 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': "Payment Provider: AsiaPay", + 'version': '1.0', + 'category': 'Accounting/Payment Providers', + 'sequence': 350, + 'summary': "An payment provider based in Hong Kong covering most Asian countries.", + 'depends': ['payment'], + 'data': [ + 'views/payment_asiapay_templates.xml', + 'views/payment_provider_views.xml', + + 'data/payment_provider_data.xml', + ], + 'post_init_hook': 'post_init_hook', + 'uninstall_hook': 'uninstall_hook', + 'license': 'LGPL-3', +} diff --git a/const.py b/const.py new file mode 100644 index 0000000..2cbe9fb --- /dev/null +++ b/const.py @@ -0,0 +1,152 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +API_URLS = { + 'production': { + 'pesopay': 'https://www.pesopay.com/b2c2/eng/payment/payForm.jsp', + 'siampay': 'https://www.siampay.com/b2c2/eng/payment/payForm.jsp', + 'bimopay': 'https://www.bimopay.com/b2c2/eng/payment/payForm.jsp', + 'paydollar': 'https://www.paydollar.com/b2c2/eng/payment/payForm.jsp', + }, + 'test': { + 'pesopay': 'https://test.pesopay.com/b2cDemo/eng/payment/payForm.jsp', + 'siampay': 'https://test.siampay.com/b2cDemo/eng/payment/payForm.jsp', + 'paydollar': 'https://test.paydollar.com/b2cDemo/eng/payment/payForm.jsp', + } +} + +# Mapping of currency ISO 4217 codes AsiaPay's currency codes. +# See https://www.paydollar.com/pdf/op/enpdintguide.pdf for the list of currency codes. +CURRENCY_MAPPING = { + 'AED': '784', + 'AUD': '036', + 'BND': '096', + 'CAD': '124', + 'CNY': '156', + 'EUR': '978', + 'GBP': '826', + 'HKD': '344', + 'IDR': '360', + 'INR': '356', + 'JPY': '392', + 'KRW': '410', + 'MOP': '446', + 'MYR': '458', + 'NZD': '554', + 'PHP': '608', + 'SAR': '682', + 'SGD': '702', + 'THB': '764', + 'TWD': '901', + 'USD': '840', + 'VND': '704', +} + +# Mapping of both country codes (e.g., 'es') and IETF language tags (e.g.: 'fr-BE') to AsiaPay +# language codes. If a language tag is not listed, the country code prefix can serve as fallback. +LANGUAGE_CODES_MAPPING = { + 'en': 'E', + 'zh_HK': 'C', + 'zh_TW': 'C', + 'zh_CN': 'X', + 'ja_JP': 'J', + 'th_TH': 'T', + 'fr': 'F', + 'de': 'G', + 'ru_RU': 'R', + 'es': 'S', + 'vi_VN': 'S', +} + +# The codes of the payment methods to activate when Asiapay is activated. +DEFAULT_PAYMENT_METHODS_CODES = [ + # Primary payment methods. + 'card', + # Brand payment methods. + 'visa', + 'mastercard', + 'amex', + 'discover', +] + +# Mapping of payment method codes to AsiaPay codes. +PAYMENT_METHODS_MAPPING = { + 'alipay_hk': 'ALIPAYHKONL', + 'amex': 'AMEX', + 'apple_pay': 'APPLEPAY', + 'atome': 'ATOME', + 'bangkok_bank': 'IBANKING', + 'bpi': 'BPI', + 'boa': 'KRUNGSRIONLINE', + 'card': 'CC', + 'cimb': 'CIMBCLICK', + 'dana': 'DANA', + 'ditnow': 'DuitNow', + 'diners': 'Diners', + 'enets': 'ENETS', + 'enetsbanking': 'ENETSBANKING', + 'enetsqr': 'ENETSQR', + 'eximbay': 'Eximbay', + 'fps': 'FPS', + 'gcash': 'GCash', + 'google_pay': 'GOOGLE', + 'hoolah': 'HOOLAH', + 'humm': 'humm', + 'jkopay': 'JKOPAY', + 'jcs': 'JCB', + 'kungthai_bank': 'KTB', + 'linepay': 'LINEPAY', + 'maya': 'PayMaya', + 'mastercard': 'Master', + 'masterpass': 'MP', + 'maybank': 'M2U', + 'momo': 'MOMOPAY', + 'ovo': 'OVO', + 'pace': 'Pace', + 'pay_id': 'PAYID', + 'paymaya': 'PayMaya', + 'payme': 'PayMe', + 'payu': 'PAYU', + 'poli': 'POLI', + 'qris': 'QRIS', + 'samsung_pay': 'SAMSUNG', + 'shopeepay': 'SHOPEEPAY', + 'tendopay': 'TendoPay', + 'touch_n_go': 'TouchnGo', + 'truemoney': 'TRUEMONEY', + 'ttb': 'TMB', + 'unionpay': 'CHINAPAY', + 'visa': 'VISA', + 'wechat_pay': 'WECHATONL', + 'zip': 'ZIPPAY', + 'zippay': 'ZIPPAY', + 'tenpay': 'TENPAY', + 'welend': 'WELEND', + 'tmb': 'TMB', +} + +# The keys of the values to use in the calculation of the signature. +SIGNATURE_KEYS = { + 'outgoing': [ + 'merchant_id', + 'reference', + 'currency_code', + 'amount', + 'payment_type', + ], + 'incoming': [ + 'src', + 'prc', + 'successcode', + 'Ref', + 'PayRef', + 'Cur', + 'Amt', + 'payerAuth', + ], +} + +# Mapping of transaction states to AsiaPay success codes. +SUCCESS_CODE_MAPPING = { + 'done': ('0',), + 'error': ('1',), +} diff --git a/controllers/__init__.py b/controllers/__init__.py new file mode 100644 index 0000000..80ee4da --- /dev/null +++ b/controllers/__init__.py @@ -0,0 +1,3 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/controllers/main.py b/controllers/main.py new file mode 100644 index 0000000..55e88c1 --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,75 @@ +# 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 AsiaPayController(http.Controller): + _return_url = '/payment/asiapay/return' + _webhook_url = '/payment/asiapay/webhook' + + @http.route(_return_url, type='http', auth='public', methods=['GET']) + def asiapay_return_from_checkout(self, **data): + """ Process the notification data sent by AsiaPay after redirection. + + :param dict data: The notification data. + """ + # Don't process the notification data as they contain no valuable information except for the + # reference and AsiaPay doesn't expose an endpoint to fetch the data from the API. + return request.redirect('/payment/status') + + @http.route(_webhook_url, type='http', auth='public', methods=['POST'], csrf=False) + def asiapay_webhook(self, **data): + """ Process the notification data sent by AsiaPay to the webhook. + + :param dict data: The notification data. + :return: The 'OK' string to acknowledge the notification. + :rtype: str + """ + _logger.info("Notification received from AsiaPay with data:\n%s", pprint.pformat(data)) + try: + # Check the integrity of the notification data. + tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data( + 'asiapay', data + ) + self._verify_notification_signature(data, tx_sudo) + + # Handle the notification data. + tx_sudo._handle_notification_data('asiapay', data) + except ValidationError: # Acknowledge the notification to avoid getting spammed. + _logger.exception("Unable to handle the notification data; skipping to acknowledge.") + + return 'OK' # 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('secureHash') + 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._asiapay_calculate_signature( + notification_data, incoming=True + ) + if not hmac.compare_digest(received_signature, expected_signature): + _logger.warning("Received notification with invalid signature.") + raise Forbidden() diff --git a/data/neutralize.sql b/data/neutralize.sql new file mode 100644 index 0000000..8c5a222 --- /dev/null +++ b/data/neutralize.sql @@ -0,0 +1,5 @@ +-- disable asiapay payment provider +UPDATE payment_provider + SET asiapay_merchant_id = NULL, + asiapay_secure_hash_secret = NULL, + asiapay_secure_hash_function = NULL; diff --git a/data/payment_provider_data.xml b/data/payment_provider_data.xml new file mode 100644 index 0000000..ed5db24 --- /dev/null +++ b/data/payment_provider_data.xml @@ -0,0 +1,9 @@ + + + + + asiapay + + + + diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..496d0d4 --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"حدث خطأ أثناء معالجة عملية الدفع (كود النجاح %s؛ كود الرد الأساسي %s). يرجى " +"المحاولة مجدداً. " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "معرف تاجر AsiaPay " + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "خاصية التشفير الآمن في AsiaPay " + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "سر التشفير الأمن في AsiaPay " + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "علامة AsiaPay التجارية " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "العلامة التجارية" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "رمز " + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "معرف التاجر" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "لم يتم العثور على معاملة تطابق المرجع %s. " + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "يمكن تحديد عملة واحدة فقط في حساب AsiaPay. " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "مزود الدفع " + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة الدفع " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "تم استلام البيانات دون مرجع %(ref)s. " + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "تم استلام البيانات دون كود النجاح. " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "خاصية التشفير الآمن " + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "سر التشفير الأمن " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "معرّف التاجر مستخدَم فقط لتعريف حساب AsiaPay الخاص بك. " + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "العلامة التجارية المرتبطة بحساب AsiaPay الخاص بك. " + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "خاصية التشفير الآمن المرتبطة بحساب AsiaPay الخاص بك. " + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "الكود التقني لمزود الدفع هذا. " + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "كود النجاح غير معروف: %s " diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..a11bd76 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# aleksandar ivanov, 2023 +# Maria Boyadjieva , 2023 +# Turhan Aydin , 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Turhan Aydin , 2024\n" +"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ИН на търговец" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не е открита транзакция, съответстваща с референция %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Доставчик на разплащания" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..eeb786d --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Arnau Ros, 2023 +# Martin Trigaux, 2023 +# marcescu, 2023 +# Guspy12, 2023 +# RGB Consulting , 2023 +# Ivan Espinola, 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: Ivan Espinola, 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marca" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Codi" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID del mercader" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Proveïdor de pagament" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "El codi tècnic d'aquest proveïdor de pagaments." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..4f70a3f --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,180 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Značka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Poskytovatel platby" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..3c9df8d --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,180 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# lhmflexerp , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Mærke" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Sælger ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Betalingsudbyder" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..828e2c8 --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Während der Verarbeitung Ihrer Zahlung ist ein Fehler aufgetreten " +"(Erfolgscode %s; primärer Antwortcode %s). Bitte versuchen Sie es erneut." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay-Händler-ID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Secure-Hash-Funktion von AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Secure-Hash-Geheimnis von AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Asiapay-Marke" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marke" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Händler-ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Pro AsiaPay-Konto kann nur eine Währung ausgewählt werden." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Zahlungsanbieter" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Erhaltene Daten mit fehlenden Erfolgscode." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Secure-Hash-Funktion" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Secure-Hash-Geheimnis" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"Die Händler-ID dient ausschließlich zur Identifizierung Ihres AsiaPay-" +"Kontos." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Die mit Ihrem AsiaPay-Konto verbundene Marke." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "Die mit Ihrem AsiaPay-Konto verbundene Secure-Hash-Funktion." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Der technische Code dieses Zahlungsanbieters." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Unbekannter Erfolgscode: %s" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..785a2e9 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Ocurrió un error al procesar su pago (código de éxito %s; código de " +"respuesta principal %s). Inténtelo de nuevo." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "ID de comerciante de AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Función de Hash segura de AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Secreto de Hash segura de AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Marca Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marca" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID de comerciante" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Solo puede seleccionar una moneda por cuenta de AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Se recibió información sin un código de éxito." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Función Hash segura" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Secreto hash seguro" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"El ID de comerciante que solo se usa para identificar su cuenta AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "La marca asociada a su cuenta de AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "La función de hash segura asociada a su cuenta de AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "El código técnico de este proveedor de pagos." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Código de éxito desconocido: %s" diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..ef44784 --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Ocurrió un error al procesar su pago (código de éxito %s; código de " +"respuesta principal %s). Inténtelo de nuevo." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "ID de comerciante de AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Hash de función segura de AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Hash de secreto seguro de AsiaPlay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Marca Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marca" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID de comerciante" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Solo puede seleccionar una divisa por cuenta de AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Se recibió información sin un código de éxito." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Función Hash segura" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Secreto hash seguro" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"El ID de comerciante que solo se usa para identificar su cuenta AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "La marca asociada a su cuenta de AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "La función segura de hash asociada a su cuenta de AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "El código técnico de este proveedor de pagos." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Código de éxito desconocido: %s" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..00364ab --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Martin Trigaux, 2023 +# Leaanika Randmets, 2023 +# Rivo Zängov , 2023 +# Marek Pontus, 2023 +# Anna, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Anna, 2023\n" +"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Kaubamärk" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kood" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Kaupmehe ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Makseteenuse pakkuja" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Antud makseteenuse pakkuja tehniline kood." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..995cfa5 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Mohsen Mohammadi , 2023 +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "برند" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "کد" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "سرویس دهنده پرداخت" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..b76a03d --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Veikko Väätäjä , 2023 +# Ossi Mantylahti , 2023 +# Jarmo Kortetjärvi , 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: Jarmo Kortetjärvi , 2023\n" +"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Merkki" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Koodi" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Kauppiastunnus" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Viitettä %s vastaavaa tapahtumaa ei löytynyt." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Maksupalveluntarjoaja" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Tämän maksupalveluntarjoajan tekninen koodi." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..d888dee --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Une erreur est survenue lors du traitement de votre paiement (code de " +"réussite %s ; code de réponse primaire %s). Veuillez réessayer." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "ID marchand AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Fonction de hachage sûre AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Secret de hachage sûr AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Marque AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marque" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID marchand" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Une seule devise peut être sélectionnée par le compte AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Fournisseur de paiement" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction de paiement" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "Données reçus avec référence manquante %(ref)s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Données reçues avec code de réussite manquant." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Fonction de hachage sûre" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Secret de hachage sûr" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"L'identifiant marchand uniquement utilisé pour identifier votre compte " +"AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "La marque associée à votre compte AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "La fonction de hachage sûre associée à votre compte AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Le code technique de ce fournisseur de paiement." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Code de réussite inconnu : %s" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..91bbef6 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Martin Trigaux, 2023 +# Ha Ketem , 2023 +# ZVI BLONDER , 2023 +# ExcaliberX , 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: ExcaliberX , 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "מותג" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "קוד" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "מזהה סוחר" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "לא נמצאה עסקה המתאימה למספר האסמכתא %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..350e8a6 --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Istvan , 2023 +# Tamás Németh , 2023 +# gezza , 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Márka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Kereskedelmi azonosító" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Fizetési szolgáltató" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..e590593 --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Terjadi error pada pemrosesan pembayaran Anda (kode sukses %s; kode " +"tanggapan utama %s). Silakan coba lagi." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "ID Pedagang AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Fungsi Secure Hash AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Secure Hash Rahasia AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Brand AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Brand" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID Pedagang" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Hanya satu mata uang yang dapat dipilih oleh akun AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Penyedia Pembayaran" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Menerima data tanpa kode sukses." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Fungsi Secure Hash" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Secure Hash Rahasia" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"ID Pedagang digunakan hanya untuk mengidentifikasi akun AsiaPay Anda. " + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Brand yang terkait akun AsiaPay Anda." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "Fungsi secure hash yang terkait akun AsiaPay Anda." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kode teknis penyedia pembayaran ini." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Kode sukses yang tidak diketahui: %s" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..96d1ab2 --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Si è verificato un errore durante l'elaborazione del pagamento (codice di " +"riuscita %s; codice di risposta primario %s). Prova di nuovo." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "ID commerciante AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Funzione hash sicuro AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Secret hash sicuro AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Marchio AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marca" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Codice" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID commerciante" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Nessuna transazione trovata corrispondente al riferimento %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "È possibile selezionare solo una valuta per l'account AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Fornitore di pagamenti" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Dati ricevuti privi di codice di riuscita." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Funzione hash sicuro" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Secret hash sicuro" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"L'ID del commerciante utilizzato esclusivamente per identificare il tuo " +"account AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Il marchio associato al tuo account AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "La funzione hash sicuro associata al tuo account AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Codice tecnico del fornitore di pagamenti." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Codice di riuscita sconosciuto: %s" diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..6d4b0c5 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "支払処理中(サクセスコード%s; 一次レスポンスコード %s)にエラーが発生しました。再度試して下さい。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPayマーチャントID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "AsiaPayセキュアハッシュ機能" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPayセキュアハッシュシークレット" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Asiapayブランド" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "ブランド" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "コード" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "マーチャントID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "参照に一致する取引が見つかりません%s。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "AsiaPayアカウントでは1通貨のみ選択できます。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "決済プロバイダー" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "参照%(ref)sが欠落しているデータを受信しました。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "サクセスコードが欠落しているデータを受信しました。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "セキュアなハッシュ機能" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "セキュアなハッシュシークレット" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "マーチャントIDはAsiaPayアカウントを識別するためにのみ使用されます。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "AsiaPayアカウントに関連したブランド" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "AsiaPayアカウントに関連したセキュアなハッシュ機能" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "この決済プロバイダーのテクニカルコード。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "不明なサクセスコード: %s" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..61e6599 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "결제를 처리하는 중 오류가 발생했습니다. (성공 코드 %s; 기본 응답 코드 %s) 나중에 다시 시도해 주세요." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay 판매자 ID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "AsiaPay 보안 해시 기능" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPay 보안 해시 비밀" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Asiapay 브랜드" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "상표" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "코드" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "판매자 ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "%s 참조와 일치하는 거래 항목이 없습니다." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "AsiaPay 계정당 하나의 통화만 선택할 수 있습니다." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "결제대행업체" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "지불 거래" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "참조 %(ref)s가 누락된 데이터가 수신되었습니다." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "성공 코드가 누락된 데이터가 수신되었습니다." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "보안 해시 기능" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "보안 해시 비밀" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "AsiaPay 계정을 식별하는 데 사용되는 판매자 ID입니다." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "AsiaPay 계정과 연결된 브랜드입니다." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "AsiaPay 계정과 연결된 보안 해시 기능입니다." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "이 결제대행업체의 기술 코드입니다." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "알 수 없는 성공 코드: %s" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..d7d1e93 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,180 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Martin Trigaux, 2023 +# Linas Versada , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Linas Versada , 2023\n" +"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Prekinis ženklas" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kodas" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Pardavėjo ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..f5ebc80 --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Arnis Putniņš , 2023 +# Martin Trigaux, 2023 +# Armīns Jeltajevs , 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: Armīns Jeltajevs , 2024\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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kods" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Maksājumu sniedzējs" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksājuma darījums" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..2746178 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Er is een fout opgetreden tijdens het verwerken van je betaling (succescode " +"%s; eerste antwoordcode %s). Probeer het opnieuw." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "Handelaars-ID Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "AsiaPay veilige hashfunctie" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPay veilig hashgeheim" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Asiapay merk" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Merk" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Handelaars-ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Er kan maar één valuta worden geselecteerd per AsiaPay account." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Betaalprovider" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Gegevens ontvangen met ontbrekende succescode." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Veilige hashfunctie" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Veilig hashgeheim" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"Het handelaars-ID die enkel wordt gebruikt om je AsiaPay account te " +"identificeren." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Het merk gekoppeld aan je AsiaPay account." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "De veilige hashfunctie gekoppeld aan je AsiaPay account." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "De technische code van deze betaalprovider." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Onbekende succescode: %s" diff --git a/i18n/payment_asiapay.pot b/i18n/payment_asiapay.pot new file mode 100644 index 0000000..75898a3 --- /dev/null +++ b/i18n/payment_asiapay.pot @@ -0,0 +1,175 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..4784bdd --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Dostawca Płatności" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kod techniczny tego dostawcy usług płatniczych." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..ef3480c --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Id. do Comerciante" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..e6d7184 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Ocorreu um erro durante o processamento do seu pagamento (código de sucesso " +"%s; código de resposta primário %s). Tente novamente." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay – ID do comerciante" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "AsiaPay – Função hash segura" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPay – Segredo hash seguro" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Marca da AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marca" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID do comerciante" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Só é possível selecionar uma moeda por conta do AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Provedor de serviços de pagamento" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de pagamento" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Dados recebidos sem o código de sucesso." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Função hash segura" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Segredo hash seguro" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"O ID do comerciante usado exclusivamente para identificar sua conta do " +"AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "A marca associada à sua conta do AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "A função hash segura associada à sua conta do AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "O código técnico deste provedor de pagamento." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Código de sucesso desconhecido: %s" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..d2aed4f --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,186 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Martin Trigaux, 2023 +# Irina Fedulova , 2023 +# ILMIR , 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"При обработке вашего платежа произошла ошибка (код успеха %s; код первичного" +" ответа %s). Пожалуйста, попробуйте еще раз." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay Merchant ID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Безопасная хэш-функция AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPay Secure Hash Secret" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Бренд Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Бренд" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID продавца" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "На счете AsiaPay может быть выбрана только одна валюта." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Поставщик платежей" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "платеж" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "Получены данные с отсутствующей ссылкой %(ref)s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Получены данные с отсутствующим кодом успеха." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Безопасная хэш-функция" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Секрет безопасного хэша" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"Идентификатор продавца используется исключительно для идентификации вашего " +"счета в AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Бренд, связанный с вашим счетом в AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "Безопасная хэш-функция, связанная с вашим счетом в AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технический код данного провайдера платежей." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Неизвестный код успеха: %s" diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..6f33c28 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,179 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Značka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID obchodníka" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..f0d0d00 --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Tadej Lupšina , 2023 +# Tomaž Jug , 2023 +# Martin Trigaux, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Martin Trigaux, 2023\n" +"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Znamka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Oznaka" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Ponudnik plačil" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..742176b --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,181 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Martin Trigaux, 2023 +# Dragan Vukosavljevic , 2023 +# コフスタジオ, 2024 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: コフスタジオ, 2024\n" +"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Brand" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "No transaction found matching reference %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Provajder plaćanja" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "The technical code of this payment provider." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..4f3e79b --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Martin Trigaux, 2023 +# Kim Asplund , 2023 +# Anders Wallenquist , 2023 +# Lasse L, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Lasse L, 2023\n" +"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Märke" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Ingen transaktion hittades som matchar referensen %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Betalningsleverantör" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Den tekniska koden för denna betalningsleverantör." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..fa85d5c --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"เกิดข้อผิดพลาดระหว่างการประมวลผลการชำระเงินของคุณ (รหัสสำเร็จ %s; " +"รหัสตอบกลับหลัก %s) กรุณาลองใหม่อีกครั้ง" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "รหัสผู้ค้า AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "ฟังก์ชันแฮชที่ปลอดภัยของ AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "ความลับแฮชที่ปลอดภัยของ AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "แบรนด์ Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "แบรนด์" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "โค้ด" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ไอดีผู้ค้า" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "ไม่พบธุรกรรมที่ตรงกับการอ้างอิง %s" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "บัญชี AsiaPay สามารถเลือกได้เพียงสกุลเงินเดียวเท่านั้น" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "ผู้ให้บริการชำระเงิน" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "ธุรกรรมสำหรับการชำระเงิน" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "ได้รับข้อมูลโดยไม่มีการอ้างอิง %(ref)s" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "ได้รับข้อมูลโดยไม่มีรหัสสำเร็จ" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "ฟังก์ชันแฮชที่ปลอดภัย" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "ความลับแฮชที่ปลอดภัย" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "ID ผู้ค้าใช้เพื่อระบุบัญชี AsiaPay ของคุณเท่านั้น" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "แบรนด์ที่เชื่อมโยงกับบัญชี AsiaPay ของคุณ" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "ฟังก์ชันแฮชที่ปลอดภัยซึ่งเชื่อมโยงกับบัญชี AsiaPay ของคุณ" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "รหัสสำเร็จที่ไม่รู้จัก: %s" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..918b398 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,183 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Murat Kaplan , 2023 +# Umur Akın , 2023 +# Ediz Duman , 2023 +# Martin Trigaux, 2023 +# Ertuğrul Güreş , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ertuğrul Güreş , 2023\n" +"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Marka" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "Ticari ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Ödeme Sağlayıcı" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Bu ödeme sağlayıcısının teknik kodu." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..4ca7ea2 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,184 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Wil Odoo, 2023 +# Alina Lisnenko , 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: Alina Lisnenko , 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Виникла помилка під час обробки вашого платежу (код доступу %s; первинний " +"код відповіді %s). Спробуйте ще раз." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay Merchant ID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Функція хешу безпеки AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Ключ безпеки хешу AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Бренд Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Бренд" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID продавця" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не знайдено жодної транзакції, що відповідає референсу %s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Лише одну валюту можна вибрати на рахунок AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Провайдер платежу" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "Отримані дані з відсутнім референсом %(ref)s." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Отримані дані з відсутнім кодом доступу." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Функція хешу безпеки" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Секрет хешу безпеки" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "" +"Ідентифікатор продавця, який використовується виключно для ідентифікації " +"вашого облікового запису AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Бренд, пов’язаний з вашим обліковим записом AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "Захищена хеш-функція, пов’язана з вашим обліковим записом AsiaPay." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технічний код цього провайдера платежу." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Невідомий код доступу: %s" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..4d5b763 --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,182 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Wil Odoo, 2023 +# Thi Huong Nguyen, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Thi Huong Nguyen, 2023\n" +"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "" +"Đã xảy ra lỗi trong quá trình xử lý khoản thanh toán của bạn (mã thành công " +"%s; mã phản hồi chính %s). Vui lòng thử lại. " + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "ID người bán AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "Tính năng hash bảo mật AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "Mật khẩu hash bảo mật AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Thương hiệu Asiapay" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "Thương hiệu" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "Mã" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "ID người bán" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "Tài khoản AsiaPay chỉ có thể chọn một loại tiền tệ." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "Nhà cung cấp dịch vụ thanh toán" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "Dữ liệu đã nhận bị thiếu mã thành công." + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "Tính năng hash bảo mật" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "Mật khẩu hash bảo mật" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "ID người bán chỉ được sử dụng để xác định tài khoản AsiaPay của bạn." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "Thương hiệu được liên kết với tài khoản AsiaPay của bạn." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "Tính năng hash bảo mật được liên kết với tài khoản AsiaPay của bạn." + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Mã kỹ thuật của nhà cung cấp dịch vụ thanh toán này." + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "Mã thành công không xác định: %s" diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..9b3a31a --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,180 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# Translators: +# Wil Odoo, 2023 +# Chloe Wang, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Chloe Wang, 2023\n" +"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "在处理您的付款时发生错误(成功代码 %s;主要响应代码 %s)。 请重试。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay 商户 ID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "AsiaPay 安全哈希函数" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPay 安全哈希密钥" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Asiapay 品牌" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "品牌" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "代码" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "商家 ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "没有发现与参考文献%s相匹配的交易。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "每个 AsiaPay 账户只能选择一种货币。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "收到的数据缺少参考编号%(ref)s。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "收到的数据缺少成功代码。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "安全哈希函数" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "安全哈希密钥" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "商户 ID 仅用于识别您的 AsiaPay 账户。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "与您的 AsiaPay 账户相关联的品牌。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "与您的 AsiaPay 账户相关联的安全哈希函数。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "该支付提供商的技术代码。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "未知成功代码:%s" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..d488933 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,180 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_asiapay +# +# 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_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "" +"An error occurred during the processing of your payment (success code %s; " +"primary response code %s). Please try again." +msgstr "處理付款時發生錯誤(成功代碼 %s;主要回應代碼 %s)。請再試。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__code__asiapay +msgid "AsiaPay" +msgstr "AsiaPay" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "AsiaPay Merchant ID" +msgstr "AsiaPay 商戶ID" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "AsiaPay Secure Hash Function" +msgstr "AsiaPay 安全雜湊函數" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_secure_hash_secret +msgid "AsiaPay Secure Hash Secret" +msgstr "AsiaPay 安全雜湊秘密" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__asiapay_brand +msgid "Asiapay Brand" +msgstr "Asiapay 品牌" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__bimopay +msgid "BimoPay" +msgstr "BimoPay" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Brand" +msgstr "品牌" + +#. module: payment_asiapay +#: model:ir.model.fields,field_description:payment_asiapay.field_payment_provider__code +msgid "Code" +msgstr "程式碼" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Merchant ID" +msgstr "商家ID" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "沒有找到匹配參考 %s 的交易。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_provider.py:0 +#, python-format +msgid "Only one currency can be selected by AsiaPay account." +msgstr "每個 AsiaPay 帳戶只能選擇一種貨幣。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__paydollar +msgid "PayDollar" +msgstr "PayDollar" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_asiapay +#: model:ir.model,name:payment_asiapay.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__pesopay +msgid "PesoPay" +msgstr "PesoPay" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference %(ref)s." +msgstr "收到的數據中缺漏參考編號 %(ref)s。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing success code." +msgstr "收到的數據缺漏成功代碼。" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha1 +msgid "SHA1" +msgstr "SHA1" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha256 +msgid "SHA256" +msgstr "SHA256" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_secure_hash_function__sha512 +msgid "SHA512" +msgstr "SHA512" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Function" +msgstr "安全雜湊函數" + +#. module: payment_asiapay +#: model_terms:ir.ui.view,arch_db:payment_asiapay.payment_provider_form +msgid "Secure Hash Secret" +msgstr "安全雜湊秘密" + +#. module: payment_asiapay +#: model:ir.model.fields.selection,name:payment_asiapay.selection__payment_provider__asiapay_brand__siampay +msgid "SiamPay" +msgstr "SiamPay" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_merchant_id +msgid "The Merchant ID solely used to identify your AsiaPay account." +msgstr "商戶識別碼只用於識別你的 AsiaPay 帳戶。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_brand +msgid "The brand associated to your AsiaPay account." +msgstr "與你的 AsiaPay 帳戶相關聯的品牌。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__asiapay_secure_hash_function +msgid "The secure hash function associated to your AsiaPay account." +msgstr "與你的 AsiaPay 帳戶相關聯的安全雜湊函數。" + +#. module: payment_asiapay +#: model:ir.model.fields,help:payment_asiapay.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "此付款服務商的技術代碼。" + +#. module: payment_asiapay +#. odoo-python +#: code:addons/payment_asiapay/models/payment_transaction.py:0 +#, python-format +msgid "Unknown success code: %s" +msgstr "不明成功代碼:%s" diff --git a/models/__init__.py b/models/__init__.py new file mode 100644 index 0000000..08dfb8a --- /dev/null +++ b/models/__init__.py @@ -0,0 +1,4 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import payment_provider +from . import payment_transaction diff --git a/models/payment_provider.py b/models/payment_provider.py new file mode 100644 index 0000000..50f8c1f --- /dev/null +++ b/models/payment_provider.py @@ -0,0 +1,97 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from hashlib import new as hashnew + +from odoo import _, api, fields, models +from odoo.exceptions import ValidationError + +from odoo.addons.payment_asiapay import const + + +class PaymentProvider(models.Model): + _inherit = 'payment.provider' + + code = fields.Selection( + selection_add=[('asiapay', "AsiaPay")], ondelete={'asiapay': 'set default'} + ) + asiapay_brand = fields.Selection( + string="Asiapay Brand", + help="The brand associated to your AsiaPay account.", + selection=[("paydollar", "PayDollar"), ("pesopay", "PesoPay"), + ("siampay", "SiamPay"), ("bimopay", "BimoPay")], + default='paydollar', + required_if_provider='asiapay', + ) + asiapay_merchant_id = fields.Char( + string="AsiaPay Merchant ID", + help="The Merchant ID solely used to identify your AsiaPay account.", + required_if_provider='asiapay', + ) + asiapay_secure_hash_secret = fields.Char( + string="AsiaPay Secure Hash Secret", + required_if_provider='asiapay', + groups='base.group_system', + ) + asiapay_secure_hash_function = fields.Selection( + string="AsiaPay Secure Hash Function", + help="The secure hash function associated to your AsiaPay account.", + selection=[('sha1', "SHA1"), ('sha256', "SHA256"), ('sha512', 'SHA512')], + default='sha1', + required_if_provider='asiapay', + ) + + @api.depends('code') + def _compute_view_configuration_fields(self): + """ Override of payment to make the `available_currency_ids` field required. + + :return: None + """ + super()._compute_view_configuration_fields() + self.filtered(lambda p: p.code == 'asiapay').update({ + 'require_currency': True, + }) + + # ==== CONSTRAINT METHODS ===# + + @api.constrains('available_currency_ids', 'state') + def _limit_available_currency_ids(self): + for provider in self.filtered(lambda p: p.code == 'asiapay'): + if len(provider.available_currency_ids) > 1 and provider.state != 'disabled': + raise ValidationError(_("Only one currency can be selected by AsiaPay account.")) + + # === BUSINESS METHODS ===# + + def _asiapay_get_api_url(self): + """ Return the URL of the API corresponding to the provider's state. + + :return: The API URL. + :rtype: str + """ + self.ensure_one() + + environment = 'production' if self.state == 'enabled' else 'test' + api_urls = const.API_URLS[environment] + return api_urls.get(self.asiapay_brand, api_urls['paydollar']) + + def _asiapay_calculate_signature(self, data, incoming=True): + """ Compute the signature for the provided data according to the AsiaPay documentation. + + :param dict data: The data to sign. + :param bool incoming: Whether the signature must be generated for an incoming (AsiaPay to + Odoo) or outgoing (Odoo to AsiaPay) communication. + :return: The calculated signature. + :rtype: str + """ + signature_keys = const.SIGNATURE_KEYS['incoming' if incoming else 'outgoing'] + data_to_sign = [str(data[k]) for k in signature_keys] + [self.asiapay_secure_hash_secret] + signing_string = '|'.join(data_to_sign) + shasign = hashnew(self.asiapay_secure_hash_function) + shasign.update(signing_string.encode()) + return shasign.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 != 'asiapay': + return default_codes + return const.DEFAULT_PAYMENT_METHODS_CODES diff --git a/models/payment_transaction.py b/models/payment_transaction.py new file mode 100644 index 0000000..55c0d92 --- /dev/null +++ b/models/payment_transaction.py @@ -0,0 +1,174 @@ +# 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_asiapay import const +from odoo.addons.payment_asiapay.controllers.main import AsiaPayController + + +_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 AsiaPay requirements for references are satisfied. + + AsiaPay requirements for references are as follows: + - References must be unique at provider level for a given merchant account. + This is satisfied by singularizing the prefix with the current datetime. If two + transactions are created simultaneously, `_compute_reference` ensures the uniqueness of + references by suffixing a sequence number. + - References must be at most 35 characters long. + + :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 != 'asiapay': + return super()._compute_reference(provider_code, prefix=prefix, **kwargs) + + if not prefix: + # If no prefix is provided, it could mean that a module has passed a kwarg intended for + # the `_compute_reference_prefix` method, as it is only called if the prefix is empty. + # We call it manually here because singularizing the prefix would generate a default + # value if it was empty, hence preventing the method from ever being called and the + # transaction from received a reference named after the related document. + prefix = self.sudo()._compute_reference_prefix(provider_code, separator, **kwargs) or None + prefix = payment_utils.singularize_reference_prefix(prefix=prefix, max_length=35) + return super()._compute_reference(provider_code, prefix=prefix, **kwargs) + + def _get_specific_rendering_values(self, processing_values): + """ Override of `payment` to return AsiaPay-specific rendering values. + + Note: self.ensure_one() from `_get_processing_values`. + + :param dict processing_values: The generic and specific processing values of the + transaction. + :return: The dict of provider-specific processing values. + :rtype: dict + """ + def get_language_code(lang_): + """ Return the language code corresponding to the provided lang. + + If the lang is not mapped to any language code, the country code is used instead. In + case the country code has no match either, we fall back to English. + + :param str lang_: The lang, in IETF language tag format. + :return: The corresponding language code. + :rtype: str + """ + language_code_ = const.LANGUAGE_CODES_MAPPING.get(lang_) + if not language_code_: + country_code_ = lang_.split('_')[0] + language_code_ = const.LANGUAGE_CODES_MAPPING.get(country_code_) + if not language_code_: + language_code_ = const.LANGUAGE_CODES_MAPPING['en'] + return language_code_ + + res = super()._get_specific_rendering_values(processing_values) + if self.provider_code != 'asiapay': + return res + + base_url = self.provider_id.get_base_url() + # The lang is taken from the context rather than from the partner because it is not required + # to be logged in to make a payment, and because the lang is not always set on the partner. + lang = self._context.get('lang') or 'en_US' + rendering_values = { + 'merchant_id': self.provider_id.asiapay_merchant_id, + 'amount': self.amount, + 'reference': self.reference, + 'currency_code': const.CURRENCY_MAPPING[self.provider_id.available_currency_ids[0].name], + 'mps_mode': 'SCP', + 'return_url': urls.url_join(base_url, AsiaPayController._return_url), + 'payment_type': 'N', + 'language': get_language_code(lang), + 'payment_method': const.PAYMENT_METHODS_MAPPING.get(self.payment_method_id.code, 'ALL'), + } + rendering_values.update({ + 'secure_hash': self.provider_id._asiapay_calculate_signature( + rendering_values, incoming=False + ), + 'api_url': self.provider_id._asiapay_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 AsiaPay 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 != 'asiapay' or len(tx) == 1: + return tx + + reference = notification_data.get('Ref') + if not reference: + raise ValidationError( + "AsiaPay: " + _("Received data with missing reference %(ref)s.", ref=reference) + ) + + tx = self.search([('reference', '=', reference), ('provider_code', '=', 'asiapay')]) + if not tx: + raise ValidationError( + "AsiaPay: " + _("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 AsiaPay 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 != 'asiapay': + return + + # Update the provider reference. + self.provider_reference = notification_data.get('PayRef') + + # Update the payment method. + payment_method_code = notification_data.get('payMethod') + payment_method = self.env['payment.method']._get_from_code( + payment_method_code, mapping=const.PAYMENT_METHODS_MAPPING + ) + self.payment_method_id = payment_method or self.payment_method_id + + # Update the payment state. + success_code = notification_data.get('successcode') + primary_response_code = notification_data.get('prc') + if not success_code: + raise ValidationError("AsiaPay: " + _("Received data with missing success code.")) + if success_code in const.SUCCESS_CODE_MAPPING['done']: + self._set_done() + elif success_code in const.SUCCESS_CODE_MAPPING['error']: + self._set_error(_( + "An error occurred during the processing of your payment (success code %s; primary " + "response code %s). Please try again.", success_code, primary_response_code + )) + else: + _logger.warning( + "Received data with invalid success code (%s) for transaction with primary response " + "code %s and reference %s.", success_code, primary_response_code, self.reference + ) + self._set_error("AsiaPay: " + _("Unknown success code: %s", success_code)) diff --git a/static/description/icon.png b/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..d16d465a96a60b72b36942b68c78d11315d86038 GIT binary patch literal 1302 zcmV+x1?l>UP)hxwc{JV1r`n=<&DGW(w}_m?m{L5Dg(i9A4tJV1l@n>0N^ zhxwc`I6#2-oH9H?hxeN@`J6NPoHIK>hCD%s_?$95K!!g+fIvWi_nb5Onl<>FGCM$r z_?$EJnlwB>hde-rJV1x|oiaN>hde=sJV1u}nlSd9GCe?s@1HREoHIN?hde=t_?$E0 zKVTUE001*|QchCK;O?G@6Vv!uW-MRP!SMNFmP{gFustk zkFSr9FpyCZ?m?e6+L-_V1M^8lK~!ko?3PVy#2^rc1rhP%A|k2aAt~9z9$H%P|Npj* zdF?7oU@?%(lILPFJIs@4MweY&TwJ_2H=g~%&c%qFb1>{wTrMbfDqp$a*tu|Wcy=;I zMQzx{JF+OP^}O_pon%^<7nuXN7%~u!fi={Cv~=f%_(Y}*8GH;j=RJ3*=TM|u8YCk= za|dY$(AyIy9mD?~rOJiWiNo4UkSQ`@hk7k&OtJO#0R`2vwGCM(F(P3;eLl`6l6r~kBz)}S3YGznw{rbQp&-E{{Mxp6 z-3KJ!xt<ds^w8 zQg+KCg@%v?;0=w=C30*idaF(u-IB%)xPqruP~Ofx4WF$xi&IU=4&lq5gg zNbhniTdv2c=AA1J*_o+poX`GnlGe~=xbKtj+LPr`h@*xWUrmAtPZzWxlcpY|0 z95NC?QWjk_fR48Sf0igndQA^{m^~65b3`i^!VL0sC6ei_EFm-Wq(o1@fZboxLo9-) zFGxr}^IKU$YLG3_s}dilKb5#A67af2V97*x4TzYNC3amuO!XXrM3s=JI0BG#1tbpF zu&PH737s!d>=*}=3s3c2ohdPB0s)aMna`4NW9-SnktO)2KS|=3iyioPE5U2#BuSio zBll|{@Skubh#s diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..4a36db0 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,6 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import common +from . import test_payment_provider +from . import test_payment_transaction +from . import test_processing_flows diff --git a/tests/common.py b/tests/common.py new file mode 100644 index 0000000..e779007 --- /dev/null +++ b/tests/common.py @@ -0,0 +1,37 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import Command + +from odoo.addons.payment.tests.common import PaymentCommon +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +class AsiaPayCommon(AccountTestInvoicingCommon, PaymentCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + + cls.asiapay = cls._prepare_provider('asiapay', update_values={ + 'asiapay_merchant_id': '123456789', + 'asiapay_secure_hash_secret': 'coincoin_motherducker', + 'asiapay_secure_hash_function': 'sha1', + 'available_currency_ids': [Command.set(cls.currency_euro.ids)], + }) + + cls.provider = cls.asiapay + + cls.redirect_notification_data = { + 'Ref': cls.reference, + } + cls.webhook_notification_data = { + 'src': 'dummy', + 'prc': 'dummy', + 'successcode': '0', + 'Ref': cls.reference, + 'PayRef': 'dummy', + 'Cur': cls.currency.name, + 'Amt': cls.amount, + 'payerAuth': 'dummy', + 'secureHash': '3e5bf55d9a23969130a6686db7aa4f0230956d0a', + } diff --git a/tests/test_payment_provider.py b/tests/test_payment_provider.py new file mode 100644 index 0000000..26d2f7b --- /dev/null +++ b/tests/test_payment_provider.py @@ -0,0 +1,39 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.tests import tagged + +from odoo.addons.payment_asiapay import const +from odoo.addons.payment_asiapay.tests.common import AsiaPayCommon + + +@tagged('post_install', '-at_install') +class TestPaymentProvider(AsiaPayCommon): + + def test_incompatible_with_unsupported_currencies(self): + """ Test that AsiaPay providers are filtered out from compatible providers when the currency + is not supported. """ + compatible_providers = self.env['payment.provider']._get_compatible_providers( + self.env.company.id, self.partner.id, self.amount, currency_id=self.env.ref('base.AFN').id + ) + self.assertNotIn(self.asiapay, compatible_providers) + + def test_signature_calculation_for_outgoing_data(self): + """ Test that the calculated signature matches the expected signature for outgoing data. """ + calculated_signature = self.asiapay._asiapay_calculate_signature( + { + 'merchant_id': self.asiapay.asiapay_merchant_id, + 'amount': self.amount, + 'reference': self.reference, + 'currency_code': const.CURRENCY_MAPPING[self.currency.name], + 'payment_type': 'N', + }, + incoming=False + ) + self.assertEqual(calculated_signature, '41667af8f428b5a55f44e14e5ab942f57da1ea31') + + def test_signature_calculation_for_incoming_data(self): + """ Test that the calculated signature matches the expected signature for incoming data. """ + calculated_signature = self.asiapay._asiapay_calculate_signature( + self.webhook_notification_data, incoming=True + ) + self.assertEqual(calculated_signature, '3e5bf55d9a23969130a6686db7aa4f0230956d0a') diff --git a/tests/test_payment_transaction.py b/tests/test_payment_transaction.py new file mode 100644 index 0000000..6abd076 --- /dev/null +++ b/tests/test_payment_transaction.py @@ -0,0 +1,99 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from unittest.mock import patch + +from freezegun import freeze_time + +from odoo.fields import Command +from odoo.tests import tagged +from odoo.tools import mute_logger + +from odoo.addons.payment.tests.http_common import PaymentHttpCommon +from odoo.addons.payment_asiapay import const +from odoo.addons.payment_asiapay.tests.common import AsiaPayCommon + + +@tagged('post_install', '-at_install') +class TestPaymentTransaction(AsiaPayCommon, PaymentHttpCommon): + + @freeze_time('2011-11-02 12:00:21') # Freeze time for consistent singularization behavior. + def test_reference_is_singularized(self): + """ Test the singularization of reference prefixes. """ + reference = self.env['payment.transaction']._compute_reference(self.asiapay.code) + self.assertEqual(reference, 'tx-20111102120021') + + @freeze_time('2011-11-02 12:00:21') # Freeze time for consistent singularization behavior. + def test_reference_is_computed_based_on_document_name(self): + """ Test the computation of reference prefixes based on the provided invoice. """ + self._skip_if_account_payment_is_not_installed() + + invoice = self.env['account.move'].create({}) + reference = self.env['payment.transaction']._compute_reference( + self.asiapay.code, invoice_ids=[Command.set([invoice.id])] + ) + self.assertEqual(reference, 'MISC/2011/11/0001-20111102120021') + + @freeze_time('2011-11-02 12:00:21') # Freeze time for consistent singularization behavior. + def test_reference_is_stripped_at_max_length(self): + """ Test that reference prefixes are stripped to have a length of at most 35 chars. """ + reference = self.env['payment.transaction']._compute_reference( + self.asiapay.code, prefix='this is a long reference of more than 35 characters' + ) + self.assertEqual(reference, 'this is a long refer-20111102120021') + self.assertEqual(len(reference), 35) + + 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') + with patch( + 'odoo.addons.payment_asiapay.models.payment_provider.PaymentProvider' + '._asiapay_calculate_signature', return_value='dummy_signature' + ): + rendering_values = tx._get_specific_rendering_values(None) + self.assertDictEqual( + rendering_values, + { + 'amount': tx.amount, + 'api_url': tx.provider_id._asiapay_get_api_url(), + 'currency_code': const.CURRENCY_MAPPING[tx.currency_id.name], + 'language': const.LANGUAGE_CODES_MAPPING['en'], + 'merchant_id': tx.provider_id.asiapay_merchant_id, + 'mps_mode': 'SCP', + 'payment_method': 'ALL', + 'payment_type': 'N', + 'reference': tx.reference, + 'return_url': self._build_url('/payment/asiapay/return'), + 'secure_hash': 'dummy_signature', + } + ) + + @mute_logger('odoo.addons.payment.models.payment_transaction') + def test_no_input_missing_from_redirect_form(self): + """ Test that no key is omitted from the rendering values. """ + tx = self._create_transaction(flow='redirect') + expected_input_keys = [ + 'merchantId', + 'amount', + 'orderRef', + 'currCode', + 'mpsMode', + 'successUrl', + 'failUrl', + 'cancelUrl', + 'payType', + 'lang', + 'payMethod', + 'secureHash', + ] + processing_values = tx._get_processing_values() + form_info = self._extract_values_from_html_form(processing_values['redirect_form_html']) + self.assertEqual(form_info['action'], tx.provider_id._asiapay_get_api_url()) + 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.webhook_notification_data) + self.assertEqual(tx.state, 'done') diff --git a/tests/test_processing_flows.py b/tests/test_processing_flows.py new file mode 100644 index 0000000..c7878fd --- /dev/null +++ b/tests/test_processing_flows.py @@ -0,0 +1,71 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from unittest.mock import patch + +from werkzeug.exceptions import Forbidden + +from odoo.tests import tagged +from odoo.tools import mute_logger + +from odoo.addons.payment.tests.http_common import PaymentHttpCommon +from odoo.addons.payment_asiapay.controllers.main import AsiaPayController +from odoo.addons.payment_asiapay.tests.common import AsiaPayCommon + + +@tagged('post_install', '-at_install') +class TestProcessingFlows(AsiaPayCommon, PaymentHttpCommon): + + @mute_logger('odoo.addons.payment_asiapay.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(AsiaPayController._webhook_url) + with patch( + 'odoo.addons.payment_asiapay.controllers.main.AsiaPayController.' + '_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.webhook_notification_data) + self.assertEqual(handle_notification_data_mock.call_count, 1) + + @mute_logger('odoo.addons.payment_asiapay.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(AsiaPayController._webhook_url) + with patch( + 'odoo.addons.payment_asiapay.controllers.main.AsiaPayController' + '._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.webhook_notification_data) + self.assertEqual(signature_check_mock.call_count, 1) + + def test_accept_webhook_notification_with_valid_signature(self): + """ Test the verification of a webhook notification with a valid signature. """ + tx = self._create_transaction('redirect') + self._assert_does_not_raise( + Forbidden, + AsiaPayController._verify_notification_signature, + self.webhook_notification_data, + tx, + ) + + @mute_logger('odoo.addons.payment_asiapay.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.webhook_notification_data, secureHash='dummy') + self.assertRaises(Forbidden, AsiaPayController._verify_notification_signature, payload, tx) + + @mute_logger('odoo.addons.payment_asiapay.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.webhook_notification_data, secureHash='dummy') + self.assertRaises(Forbidden, AsiaPayController._verify_notification_signature, payload, tx) diff --git a/views/payment_asiapay_templates.xml b/views/payment_asiapay_templates.xml new file mode 100644 index 0000000..6b63e3f --- /dev/null +++ b/views/payment_asiapay_templates.xml @@ -0,0 +1,21 @@ + + + + + + diff --git a/views/payment_provider_views.xml b/views/payment_provider_views.xml new file mode 100644 index 0000000..2c65caa --- /dev/null +++ b/views/payment_provider_views.xml @@ -0,0 +1,30 @@ + + + + + AsiaPay Provider Form + payment.provider + + + + + + + + + + + + + +