diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..baf6c8c --- /dev/null +++ b/__init__.py @@ -0,0 +1,24 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import controllers +from . import models + +from odoo.exceptions import UserError +from odoo.tools import config + +from odoo.addons.payment import setup_provider, reset_payment_provider + + +def pre_init_hook(env): + if not any(config.get(key) for key in ('init', 'update')): + raise UserError( + "This module is deprecated and cannot be installed. " + "Consider installing the Payment Provider: Razorpay module instead.") + + +def post_init_hook(env): + setup_provider(env, 'payumoney') + + +def uninstall_hook(env): + reset_payment_provider(env, 'payumoney') diff --git a/__manifest__.py b/__manifest__.py new file mode 100644 index 0000000..3aff8d6 --- /dev/null +++ b/__manifest__.py @@ -0,0 +1,20 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Payment Provider: PayUmoney', + 'version': '2.0', + 'category': 'Accounting/Payment Providers', + 'sequence': 350, + 'summary': "This module is deprecated.", + 'depends': ['payment'], + 'data': [ + 'views/payment_payumoney_templates.xml', + 'views/payment_provider_views.xml', + + 'data/payment_provider_data.xml', + ], + 'pre_init_hook': 'pre_init_hook', + '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..c0e146c --- /dev/null +++ b/const.py @@ -0,0 +1,12 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# The codes of the payment methods to activate when PayU Money is activated. +DEFAULT_PAYMENT_METHODS_CODES = [ + # Primary payment methods. + 'card', + # Brand payment methods. + 'visa', + 'mastercard', + 'amex', + 'discover', +] 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..a71aa26 --- /dev/null +++ b/controllers/main.py @@ -0,0 +1,71 @@ +# 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.http import request + +_logger = logging.getLogger(__name__) + + +class PayUMoneyController(http.Controller): + _return_url = '/payment/payumoney/return' + + @http.route( + _return_url, type='http', auth='public', methods=['GET', 'POST'], csrf=False, + save_session=False + ) + def payumoney_return_from_checkout(self, **data): + """ Process the notification data sent by PayUmoney after redirection from checkout. + + See https://developer.payumoney.com/redirect/. + + The route is flagged with `save_session=False` to prevent Odoo from assigning a new session + to the user if they are redirected to this route with a POST request. Indeed, as the session + cookie is created without a `SameSite` attribute, some browsers that don't implement the + recommended default `SameSite=Lax` behavior will not include the cookie in the redirection + request from the payment provider to Odoo. As the redirection to the '/payment/status' page + will satisfy any specification of the `SameSite` attribute, the session of the user will be + retrieved and with it the transaction which will be immediately post-processed. + + :param dict data: The notification data + """ + _logger.info("handling redirection from PayU money with data:\n%s", pprint.pformat(data)) + + # Check the integrity of the notification + tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data( + 'payumoney', data + ) + self._verify_notification_signature(data, tx_sudo) + + # Handle the notification data + tx_sudo._handle_notification_data('payumoney', data) + return request.redirect('/payment/status') + + @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 + """ + # Retrieve the received signature from the data + received_signature = notification_data.get('hash') + 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._payumoney_generate_sign( + 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..556026c --- /dev/null +++ b/data/neutralize.sql @@ -0,0 +1,4 @@ +-- disable payumoney payment provider +UPDATE payment_provider + SET payumoney_merchant_key = NULL, + payumoney_merchant_salt = NULL; diff --git a/data/payment_provider_data.xml b/data/payment_provider_data.xml new file mode 100644 index 0000000..43d0faa --- /dev/null +++ b/data/payment_provider_data.xml @@ -0,0 +1,23 @@ + + + + + PayUmoney + + + + + payumoney + + + + diff --git a/i18n/af.po b/i18n/af.po new file mode 100644 index 0000000..98746fd --- /dev/null +++ b/i18n/af.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/am.po b/i18n/am.po new file mode 100644 index 0000000..0e92678 --- /dev/null +++ b/i18n/am.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/ar.po b/i18n/ar.po new file mode 100644 index 0000000..7e4cbfb --- /dev/null +++ b/i18n/ar.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Malaz Abuidris , 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: Malaz Abuidris , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "رمز " + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "معرف التاجر" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "لم يتم العثور على معاملة تطابق المرجع %s. " + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "مزود الدفع " + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "تم استلام البيانات دون مرجع (%s) " + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "المفتاح مُستخدم فقط لتعريف الحساب مع PayU money " + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "حدث خطأ أثناء الدفع مع الكود %s " + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "الكود التقني لمزود الدفع هذا. " + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"لقد تم إيقاف مزود الدفع.\n" +" جرب تعطيله والانتقال إلى Razorpay. " + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "تم التصريح بالدفع. " + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "لقد تم إلغاء الدفع. " + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "لقد تمت معالجة الدفع بنجاح ولكن بانتظار الموافقة. " + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "لقد تمت معالجة الدفع بنجاح. " diff --git a/i18n/az.po b/i18n/az.po new file mode 100644 index 0000000..dcb3a29 --- /dev/null +++ b/i18n/az.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"Language: az\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/bg.po b/i18n/bg.po new file mode 100644 index 0000000..acd53e3 --- /dev/null +++ b/i18n/bg.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Търговски ключ" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Защита на търговец" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не е открита транзакция, съответстваща с референция %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Доставчик на разплащания" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Плащането Ви е упълномощено." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/bs.po b/i18n/bs.po new file mode 100644 index 0000000..6d76b04 --- /dev/null +++ b/i18n/bs.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Boško Stojaković , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković , 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/ca.po b/i18n/ca.po new file mode 100644 index 0000000..b52a477 --- /dev/null +++ b/i18n/ca.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# RGB Consulting , 2023 +# Ivan Espinola, 2023 +# Quim - eccit , 2023 +# CristianCruzParra, 2023 +# Martin Trigaux, 2023 +# Guspy12, 2023 +# marcescu, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: marcescu, 2023\n" +"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Codi" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clau del Comerciant" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Sal del Comerciant" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Proveïdor de pagament" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" +"La clau utilitzada únicament per identificar el compte amb els diners de " +"PayU" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "El pagament ha trobat un error amb el codi %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.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_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "El seu pagament s'ha autoritzat." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "El seu pagament ha estat cancel·lat." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"El vostre pagament s'ha processat correctament, però s'està esperant " +"l'aprovació." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/cs.po b/i18n/cs.po new file mode 100644 index 0000000..6c7f664 --- /dev/null +++ b/i18n/cs.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Ivana Bartonkova, 2023 +# Wil Odoo, 2023 +# Jakub Smolka, 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: Jakub Smolka, 2024\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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Poskytovatel platby" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Vaše platba byla autorizována" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Vaše platba byla zrušena." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Vaše platba proběhla úspěšně, ale čeká na schválení." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Vaše platba proběhla úspěšně." diff --git a/i18n/da.po b/i18n/da.po new file mode 100644 index 0000000..49ea468 --- /dev/null +++ b/i18n/da.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# lhmflexerp , 2023 +# Martin Trigaux, 2023 +# Sanne Kristensen , 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: Sanne Kristensen , 2024\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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Merchant nummer" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Forhandler Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Betalingsudbyder" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Din betaling er blevet godkendt." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Din betaling er blevet annulleret." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Din betaling er behandlet, men venter på godkendelse." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Din betaling er blevet behandlet." diff --git a/i18n/de.po b/i18n/de.po new file mode 100644 index 0000000..70ef04c --- /dev/null +++ b/i18n/de.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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: 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Händlerschlüssel" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Händler Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Zahlungsanbieter" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Erhaltene Daten mit fehlender Referenz (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" +"Der Schlüssel, der ausschließlich zur Identifizierung des Kontos bei PayU " +"money verwendet wird" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Bei der Zahlung ist ein Fehler aufgetreten mit dem Code %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Der technische Code dieses Zahlungsanbieters." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Dieser Anbieter ist veraltet.\n" +" Ziehen Sie in Erwägung, diesen zu deaktivieren und zu Razorpay zu wechseln." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Ihre Zahlung wurde genehmigt." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Ihre Zahlung wurde storniert." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Ihre Zahlung wurde erfolgreich verarbeitet, wartet aber noch auf die " +"Freigabe." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Ihre Zahlung wurde erfolgreich verarbeitet." diff --git a/i18n/el.po b/i18n/el.po new file mode 100644 index 0000000..f33cd24 --- /dev/null +++ b/i18n/el.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2018 +# Kostas Goutoudis , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Kostas Goutoudis , 2018\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"Language: el\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Κλειδί Εμπόρου" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salt Εμπόρου" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Αποδέκτης Πληρωμής" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Πάροχος" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/es.po b/i18n/es.po new file mode 100644 index 0000000..7a71cd0 --- /dev/null +++ b/i18n/es.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clave del comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Datos recibidos con referencia faltante (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "La clave utilizada únicamente para identificar la cuenta con PayU" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "El pago tuvo un error con el código %s " + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.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_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Este es un proveedor obsoleto.\n" +" Considere deshabilitarlo y cambiar a Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Se ha autorizado tu pago." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Tu pago ha sido cancelado." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Tu pago ha sido procesado con éxito pero está en espera de tu aprobación." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Su pago ha sido procesado con éxito." diff --git a/i18n/es_419.po b/i18n/es_419.po new file mode 100644 index 0000000..70f813c --- /dev/null +++ b/i18n/es_419.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clave de comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Cadena de 32 caracteres de comerciante" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUMoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Proveedor de pago" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Se recibieron datos sin referencia (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "La clave que se utiliza solo para identificar la cuenta con PayUMoney" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "El pago tuvo un error con el código %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.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_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Este es un proveedor obsoleto.\n" +" Considere deshabilitarlo y cambiar a Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Se autorizó su pago." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Se canceló su pago." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Su pago se procesó con éxito pero está en espera de aprobación." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Su pago se proceso con éxito." diff --git a/i18n/es_CL.po b/i18n/es_CL.po new file mode 100644 index 0000000..c0e03af --- /dev/null +++ b/i18n/es_CL.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/es_CO.po b/i18n/es_CO.po new file mode 100644 index 0000000..62019bb --- /dev/null +++ b/i18n/es_CO.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/es_CR.po b/i18n/es_CR.po new file mode 100644 index 0000000..8ba9004 --- /dev/null +++ b/i18n/es_CR.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/es_PE.po b/i18n/es_PE.po new file mode 100644 index 0000000..da1ac06 --- /dev/null +++ b/i18n/es_PE.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/es_VE.po b/i18n/es_VE.po new file mode 100644 index 0000000..2ca88cf --- /dev/null +++ b/i18n/es_VE.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/et.po b/i18n/et.po new file mode 100644 index 0000000..22f3404 --- /dev/null +++ b/i18n/et.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Aavastik , 2023 +# Leaanika Randmets, 2023 +# Martin Trigaux, 2023 +# Triine Aavik , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kood" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Makseteenuse pakkuja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Antud makseteenuse pakkuja tehniline kood." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Teie makse on autoriseeritud" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Teie makse on tühistatud." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Teie makse on edukalt töödeldud, kuid ootab kinnitamist." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Teie makse on edukalt töödeldud. " diff --git a/i18n/eu.po b/i18n/eu.po new file mode 100644 index 0000000..4b2967b --- /dev/null +++ b/i18n/eu.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/fa.po b/i18n/fa.po new file mode 100644 index 0000000..34b3703 --- /dev/null +++ b/i18n/fa.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# odooers ir, 2023 +# Martin Trigaux, 2023 +# Hamed Mohammadi , 2023 +# Hanna Kheradroosta, 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: Hanna Kheradroosta, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "کد" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "سرویس دهنده پرداخت" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "این پرداخت مجاز است." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "پرداخت شما لغو شده است." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "پرداخت شما با موفقیت انجام شد اما در انتظار تایید است." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/fi.po b/i18n/fi.po new file mode 100644 index 0000000..695df81 --- /dev/null +++ b/i18n/fi.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Jarmo Kortetjärvi , 2023 +# Veikko Väätäjä , 2023 +# Kim Asplund , 2023 +# Tuomo Aura , 2023 +# Ossi Mantylahti , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Ossi Mantylahti , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Koodi" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Merchant Key" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Viitettä %s vastaavaa tapahtumaa ei löytynyt." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Maksupalveluntarjoaja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Tämän maksupalveluntarjoajan tekninen koodi." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Maksusuorituksesi on hyväksytty." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Maksusi on peruutettu." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Maksusi on käsitelty onnistuneesti, mutta se odottaa hyväksyntää." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Maksusi on onnistuneesti käsitelty." diff --git a/i18n/fr.po b/i18n/fr.po new file mode 100644 index 0000000..6ba5e8e --- /dev/null +++ b/i18n/fr.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 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: Jolien De Paepe, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clé marchand" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salage du vendeur" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Fournisseur de paiement" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Données reçues avec référence manquante (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "La clé uniquement utilisée pour identifier le compte avec PayU money" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Le paiement a rencontré une erreur avec le code %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Le code technique de ce fournisseur de paiement." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Ce fournisseur est déprécié.\n" +" Pensez à le désactiver et à passer à Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Votre paiement a été autorisé." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Votre paiement a été annulé." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Votre paiement a été traité avec succès, mais est en attente d'approbation." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Votre paiement a été traité avec succès." diff --git a/i18n/gl.po b/i18n/gl.po new file mode 100644 index 0000000..26f5b63 --- /dev/null +++ b/i18n/gl.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/gu.po b/i18n/gu.po new file mode 100644 index 0000000..516f5a9 --- /dev/null +++ b/i18n/gu.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2018-08-02 09:56+0000\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/he.po b/i18n/he.po new file mode 100644 index 0000000..4727812 --- /dev/null +++ b/i18n/he.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# ExcaliberX , 2023 +# Martin Trigaux, 2023 +# Ha Ketem , 2023 +# ZVI BLONDER , 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: ZVI BLONDER , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "קוד" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "לא נמצאה עסקה המתאימה למספר האסמכתא %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "התשלום נתקל בשגיאה עם הקוד %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "התשלום שלך אושר." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "התשלום שלך בוטל." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "התשלום שלך עבר עיבוד בהצלחה אך הוא ממתין לאישור." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/hr.po b/i18n/hr.po new file mode 100644 index 0000000..bbe0ffb --- /dev/null +++ b/i18n/hr.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Karolina Tonković , 2019 +# Tina Milas, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Tina Milas, 2019\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Stjecatelj plaćanja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Davatelj " + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/hu.po b/i18n/hu.po new file mode 100644 index 0000000..354867a --- /dev/null +++ b/i18n/hu.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Tamás Németh , 2023 +# gezza , 2023 +# Martin Trigaux, 2023 +# sixsix six, 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: sixsix six, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Fizetési szolgáltató" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "A fizetés jóváhagyásra került." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "A fizetés törlésre került." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/id.po b/i18n/id.po new file mode 100644 index 0000000..72a11bb --- /dev/null +++ b/i18n/id.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Abe Manyo, 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: Abe Manyo, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kode" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Kunci Pedangan" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Penyedia Pembayaran" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi pembayaran" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Menerima datang tanpa referensi (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" +"Key yang hanya digunakan untuk mengidentifikasi akun dengan PayU money" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Pembayaran menemukan error dengan kode %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kode teknis penyedia pembayaran ini." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Penyedia ini sudah didepresiasi.\n" +" Pertimbangkan untuk menonaktifkan penyedia dan mulai gunakan Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Tagihan Anda telah disahkan." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Pembayaran Anda telah dibatalkan." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Pembayaran Anda sudah sukses diproses tapi sedang menunggu persetujuan." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Pembayaran Anda sukses diproses." diff --git a/i18n/is.po b/i18n/is.po new file mode 100644 index 0000000..1d3f9c5 --- /dev/null +++ b/i18n/is.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Bjorn Ingvarsson , 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Bjorn Ingvarsson , 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/it.po b/i18n/it.po new file mode 100644 index 0000000..b44047f --- /dev/null +++ b/i18n/it.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Marianna Ciofani, 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: Marianna Ciofani, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Codice" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Chiave del commerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salt del commerciante" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Nessuna transazione trovata corrispondente al riferimento %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Fornitore di pagamenti" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Dati ricevuti privi di riferimento (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" +"La chiave utilizzata esclusivamente per identificare il conto con denaro " +"PayU" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Il pagamento ha incontrato un errore con il codice %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Codice tecnico del fornitore di pagamenti." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Il fornitore è obsoleto.\n" +" Disattivalo e passa a Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Il pagamento è stato autorizzato." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Il pagamento è stato annullato." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Il pagamento è stato elaborato con successo ma è in attesa di approvazione." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Il pagamento è stato elaborato con successo." diff --git a/i18n/ja.po b/i18n/ja.po new file mode 100644 index 0000000..29be812 --- /dev/null +++ b/i18n/ja.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Junko Augias, 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: Junko Augias, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "コード" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "マーチャントキー" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "マーチャントソルト" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "参照に一致する取引が見つかりません%s。" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "決済プロバイダー" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "参照が欠落しているデータを受信しました(%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "PayU moneyのアカウントを識別するためのみに使用されるキー" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "支払でコード%sのエラーが発生しました。" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "この決済プロバイダーのテクニカルコード。" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"このプロバイダーは非推奨です。\n" +" 無効にして Razorpayに移行することを検討して下さい。" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "お支払いは承認されました。" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "お支払いはキャンセルされました。" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "お支払いは無事処理されましたが、承認待ちとなっています。" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "お支払いは無事処理されました。" diff --git a/i18n/km.po b/i18n/km.po new file mode 100644 index 0000000..67e4f40 --- /dev/null +++ b/i18n/km.po @@ -0,0 +1,83 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Sengtha Chay , 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Sengtha Chay , 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"Language: km\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Merchant Key" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/ko.po b/i18n/ko.po new file mode 100644 index 0000000..c5ee999 --- /dev/null +++ b/i18n/ko.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Daye Jeong, 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: Daye Jeong, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "코드" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "판매자 키" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "판매자 Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "%s 참조와 일치하는 거래 항목이 없습니다." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "결제대행업체" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "지불 거래" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "참조 (%s)가 누락된 데이터가 수신되었습니다 " + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "PayU 머니로 계정을 식별하는 데 사용되는 ID입니다" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "결제 중 코드 %s에서 오류가 발생했습니다" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "이 결제대행업체의 기술 코드입니다." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"이 공급업체는 더 이상 사용되지 않습니다.\n" +" 해당 공급업체를 비활성화하고 Razorpay로 이동하십시오." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "귀하의 결제가 승인되었습니다." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "귀하의 결제가 취소되었습니다." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "결제가 성공적으로 처리되었지만 승인 대기 중입니다." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "성공적으로 결제가 완료되었습니다." diff --git a/i18n/lb.po b/i18n/lb.po new file mode 100644 index 0000000..7af8c96 --- /dev/null +++ b/i18n/lb.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"Language: lb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/lo.po b/i18n/lo.po new file mode 100644 index 0000000..85fe65a --- /dev/null +++ b/i18n/lo.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"Language: lo\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/lt.po b/i18n/lt.po new file mode 100644 index 0000000..000a9f5 --- /dev/null +++ b/i18n/lt.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2023 +# Linas Versada , 2023 +# Silvija Butko , 2023 +# Jonas Zinkevicius , 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: Jonas Zinkevicius , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kodas" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Pardavėjo raktas" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Pardavėjo numeris (salt)" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Jūsų mokėjimas buvo patvirtintas." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Jūsų mokėjimas buvo atšauktas." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/lv.po b/i18n/lv.po new file mode 100644 index 0000000..7be1eac --- /dev/null +++ b/i18n/lv.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2023 +# Armīns Jeltajevs , 2023 +# Arnis Putniņš , 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Arnis Putniņš , 2023\n" +"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kods" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Maksājumu sniedzējs" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksājuma darījums" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/mn.po b/i18n/mn.po new file mode 100644 index 0000000..6e1b1f1 --- /dev/null +++ b/i18n/mn.po @@ -0,0 +1,85 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Baskhuu Lodoikhuu , 2019 +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Худалдагчийн Түлхүүр" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Худалдагчийн Давс" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Төлбөрийн хэрэгсэл" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/nb.po b/i18n/nb.po new file mode 100644 index 0000000..39faa86 --- /dev/null +++ b/i18n/nb.po @@ -0,0 +1,84 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Last-Translator: Martin Trigaux, 2019\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Merchant Key" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsløsning" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Tilbyder" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/nl.po b/i18n/nl.po new file mode 100644 index 0000000..6f39688 --- /dev/null +++ b/i18n/nl.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Jolien De Paepe, 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: Jolien De Paepe, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Code" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Handelaars sleutel" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Handelaar salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Betaalprovider" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Gegevens ontvangen zonder referentie (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" +"De sleutel die uitsluitend wordt gebruikt om de rekening met PayU-geld te " +"identificeren" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Er is een fout opgetreden bij de betaling met de code %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "De technische code van deze betaalprovider." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Deze provider is verouderd.\n" +" Overweeg deze provider uit te schakelen en over te stappen op Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Jouw betaling is toegestaan." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Jouw betaling is geannuleerd." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Je betaling is succesvol verwerkt maar wacht op goedkeuring." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Je betaling is succesvol verwerkt." diff --git a/i18n/payment_payumoney.pot b/i18n/payment_payumoney.pot new file mode 100644 index 0000000..8e82288 --- /dev/null +++ b/i18n/payment_payumoney.pot @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/pl.po b/i18n/pl.po new file mode 100644 index 0000000..6d56969 --- /dev/null +++ b/i18n/pl.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Anita Kosobucka, 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: Anita Kosobucka, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Dostawca Płatności" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Kod techniczny tego dostawcy usług płatniczych." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Twoja płatność została autoryzowana." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Twoja płatność została anulowana" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Twoja płatność została pomyślnie przetworzona, ale czeka na zatwierdzenie." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Twoja płatność została poprawnie przetworzona." diff --git a/i18n/pt.po b/i18n/pt.po new file mode 100644 index 0000000..0fe7ccd --- /dev/null +++ b/i18n/pt.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Manuela Silva , 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: 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Código de Comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "O seu pagamento foi autorizado." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/pt_BR.po b/i18n/pt_BR.po new file mode 100644 index 0000000..d48b876 --- /dev/null +++ b/i18n/pt_BR.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# Maitê Dietze, 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: Maitê Dietze, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Código" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Chave do comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salt do comerciante" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Provedor de serviços de pagamento" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de pagamento" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Dados recebidos com referência ausente (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "A chave usada exclusivamente para identificar a conta no PayULatam" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "O pagamento encontrou um erro com o código %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "O código técnico deste provedor de pagamento." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Esse provedor está obsoleto.\n" +"Considere desativá-lo e mudar para Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Seu pagamento foi autorizado." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Seu pagamento foi cancelado." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Seu pagamento foi processado com sucesso, mas está aguardando aprovação." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Seu pagamento foi processado com sucesso." diff --git a/i18n/ro.po b/i18n/ro.po new file mode 100644 index 0000000..5b5464d --- /dev/null +++ b/i18n/ro.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/ru.po b/i18n/ru.po new file mode 100644 index 0000000..469bd30 --- /dev/null +++ b/i18n/ru.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2023 +# ILMIR , 2023 +# Irina Fedulova , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Ключ продавца" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Платежный провайдер" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технический код этого платежного провайдера." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Ваш платеж был подтвержден." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Ваш платеж был отменен." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Ваш платеж был успешно обработан, но ожидает одобрения." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Ваш платеж был успешно обработан." diff --git a/i18n/sk.po b/i18n/sk.po new file mode 100644 index 0000000..1f07255 --- /dev/null +++ b/i18n/sk.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 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: 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kód" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Vaša platba bola autorizovaná." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Vaša platba bola úspešne spracovaná, ale čaká na schválenie." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/sl.po b/i18n/sl.po new file mode 100644 index 0000000..dc3994a --- /dev/null +++ b/i18n/sl.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2023 +# Tomaž Jug , 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: Tomaž Jug , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Oznaka" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Ponudnik plačil" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Vaše plačilo je bilo potrjeno." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/sr.po b/i18n/sr.po new file mode 100644 index 0000000..f7ae620 --- /dev/null +++ b/i18n/sr.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "No transaction found matching reference %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Provajder plaćanja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "The technical code of this payment provider." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Vaše plaćanje je autorizovano." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Your payment has been cancelled." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "" +"Your payment has been successfully processed but is waiting for approval." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/sr@latin.po b/i18n/sr@latin.po new file mode 100644 index 0000000..7c29cc3 --- /dev/null +++ b/i18n/sr@latin.po @@ -0,0 +1,80 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-02-11 14:33+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "" + +#. module: payment_payumoney +#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_account_payment_method +msgid "Payment Methods" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider +msgid "The Payment Service Provider to use with this acquirer" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" diff --git a/i18n/sv.po b/i18n/sv.po new file mode 100644 index 0000000..bb4727e --- /dev/null +++ b/i18n/sv.po @@ -0,0 +1,114 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Anders Wallenquist , 2023 +# Jakob Krabbe , 2023 +# Martin Trigaux, 2023 +# Lasse L, 2023 +# Kim Asplund , 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: Kim Asplund , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Ingen transaktion hittades som matchar referensen %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Betalningsleverantör" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Den tekniska koden för denna betalningsleverantör." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Din betalning har bekräftas." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Din betalning har avbrutits." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Din betalning har behandlats men väntar på godkännande." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/th.po b/i18n/th.po new file mode 100644 index 0000000..59ae74d --- /dev/null +++ b/i18n/th.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "โค้ด" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "คีย์ผู้ขาย" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "ผู้ขาย Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "ไม่พบธุรกรรมที่ตรงกับการอ้างอิง %s" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "ผู้ให้บริการชำระเงิน" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "ธุรกรรมสำหรับการชำระเงิน" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "ข้อมูลที่ได้รับโดยไม่มีการอ้างอิง (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "คีย์ที่ใช้ในการระบุบัญชีด้วยเงิน PayU เท่านั้น" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "การชำระเงินพบข้อผิดพลาดกับรหัส %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"ผู้ให้บริการรายนี้เลิกใช้แล้ว\n" +" ให้พิจารณาปิดการใช้งานและเปลี่ยนไปใช้ Razorpay" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "การชำระเงินของคุณได้รับการอนุมัติแล้ว" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "การชำระเงินของคุณถูกยกเลิก" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "การชำระเงินของคุณได้รับการประมวลผลเรียบร้อยแล้ว แต่กำลังรอการอนุมัติ" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "การชำระเงินของคุณได้รับการประมวลผลเรียบร้อยแล้ว" diff --git a/i18n/tr.po b/i18n/tr.po new file mode 100644 index 0000000..26543a1 --- /dev/null +++ b/i18n/tr.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Güven YILMAZ , 2023 +# Martin Trigaux, 2023 +# Umur Akın , 2023 +# Murat Kaplan , 2023 +# Ediz Duman , 2023 +# Murat Durmuş , 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Kod" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Ticari Anahtar" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Ödeme Sağlayıcı" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "Yalnızca hesabı PayU parasıyla tanımlamak için kullanılan anahtar" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Ödeme kod %s bir hatayla karşılaştı" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.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_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Ödemeniz onaylandı." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Ödemeniz iptal edildi." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Ödemeniz başarıyla işleme koyuldu, ancak onay bekliyor." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/uk.po b/i18n/uk.po new file mode 100644 index 0000000..a3a01b3 --- /dev/null +++ b/i18n/uk.po @@ -0,0 +1,116 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Alina Lisnenko , 2023 +# Martin Trigaux, 2023 +# Wil Odoo, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: Wil Odoo, 2023\n" +"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Код" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Ключ Merchant" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Секретний ключ Merchant" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "Не знайдено жодної транзакції, що відповідає референсу %s." + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Провайдер платежу" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Отримані дані з відсутнім референсом (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "" +"Ключ, який використовується виключно для ідентифікації рахунку з грошима " +"PayU" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Під час платежу сталася помилка з кодом %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "Технічний код цього провайдера платежу." + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Цей провайдер не обслуговується.\n" +" Ви можете вимкнути його та перейти на Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Вашу оплату було авторизовано." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Ваш платіж скасовано." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Ваш платіж успішно оброблено, але очікує на затвердження." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "" diff --git a/i18n/vi.po b/i18n/vi.po new file mode 100644 index 0000000..8c6491b --- /dev/null +++ b/i18n/vi.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "Mã" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Mã khoá người bán" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/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_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "Nhà cung cấp dịch vụ thanh toán" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "Dữ liệu đã nhận bị thiếu mã (%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "Mã khoá chỉ được sử dụng để xác định tài khoản với PayUmoney." + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "Thanh toán gặp lỗi với mã %s" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.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_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"Nhà cung cấp này đã bị ngừng sử dụng.\n" +" Hãy cân nhắc vô hiệu hoá nhà cung cấp đó và chuyển sang Razorpay." + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "Thanh toán của bạn đã được uỷ quyền." + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "Thanh toán của bạn đã bị hủy." + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "Thanh toán của bạn đã được xử lý thành công nhưng đang chờ phê duyệt." + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "Thanh toán của bạn đã được xử lý thành công." diff --git a/i18n/zh_CN.po b/i18n/zh_CN.po new file mode 100644 index 0000000..35bedfb --- /dev/null +++ b/i18n/zh_CN.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Wil Odoo, 2023 +# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 17.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-10-26 21:56+0000\n" +"PO-Revision-Date: 2023-10-26 23:09+0000\n" +"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "代码" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "商家密钥" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "商家盐" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "没有发现与参考文献%s相匹配的交易。" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "收到的数据缺少参考编号(%s)。" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "用于识别PayU资金账户的唯一密钥" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "付款遇到代码为 %s 的错误" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "该支付提供商的技术代码。" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"该提供商已过时。\n" +" 请考虑禁用,并转用Razorpay。" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "支付已获授权。" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "您的支付已被取消。" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "您的支付已经成功处理,但正在等待批准。" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "您的付款已成功处理。" diff --git a/i18n/zh_TW.po b/i18n/zh_TW.po new file mode 100644 index 0000000..d714936 --- /dev/null +++ b/i18n/zh_TW.po @@ -0,0 +1,113 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# 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_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code +msgid "Code" +msgstr "程式碼" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "Merchant Key" +msgstr "商家密鑰" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "商家鹽" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "No transaction found matching reference %s." +msgstr "沒有找到匹配參考 %s 的交易。" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney +#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_provider +msgid "Payment Provider" +msgstr "支付提供商" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "Received data with missing reference (%s)" +msgstr "收到的數據缺漏參考編號(%s)" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key +msgid "The key solely used to identify the account with PayU money" +msgstr "只用於向 PayU money 識別該帳戶的密鑰" + +#. module: payment_payumoney +#. odoo-python +#: code:addons/payment_payumoney/models/payment_transaction.py:0 +#, python-format +msgid "The payment encountered an error with code %s" +msgstr "付款遇到了一個錯誤,代碼為 %s。" + +#. module: payment_payumoney +#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code +msgid "The technical code of this payment provider." +msgstr "此付款服務商的技術代碼。" + +#. module: payment_payumoney +#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form +msgid "" +"This provider is deprecated.\n" +" Consider disabling it and moving to Razorpay." +msgstr "" +"此服務商已被棄用。\n" +" 請考慮將它設為停用,並轉用 Razorpay。" + +#. module: payment_payumoney +#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been authorized." +msgstr "您的付款已獲授權。" + +#. module: payment_payumoney +#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been cancelled." +msgstr "您的付款已被取消。" + +#. module: payment_payumoney +#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney +msgid "" +"Your payment has been successfully processed but is waiting for approval." +msgstr "您的付款已成功處理,但正在等待批准。" + +#. module: payment_payumoney +#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney +msgid "Your payment has been successfully processed." +msgstr "你的付款已成功處理。" 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..9ad4898 --- /dev/null +++ b/models/payment_provider.py @@ -0,0 +1,58 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import hashlib + +from odoo import fields, models + +from odoo.addons.payment_payulatam.const import DEFAULT_PAYMENT_METHODS_CODES + + +class PaymentProvider(models.Model): + _inherit = 'payment.provider' + + code = fields.Selection( + selection_add=[('payumoney', "PayUmoney")], ondelete={'payumoney': 'set default'}) + payumoney_merchant_key = fields.Char( + string="Merchant Key", help="The key solely used to identify the account with PayU money", + required_if_provider='payumoney') + payumoney_merchant_salt = fields.Char( + string="Merchant Salt", required_if_provider='payumoney', groups='base.group_system') + + def _get_supported_currencies(self): + """ Override of `payment` to return INR as the only supported currency. """ + supported_currencies = super()._get_supported_currencies() + if self.code == 'payumoney': + supported_currencies = supported_currencies.filtered(lambda c: c.name == 'INR') + return supported_currencies + + def _payumoney_generate_sign(self, values, incoming=True): + """ Generate the shasign for incoming or outgoing communications. + + :param dict values: The values used to generate the signature + :param bool incoming: Whether the signature must be generated for an incoming (PayUmoney to + Odoo) or outgoing (Odoo to PayUMoney) communication. + :return: The shasign + :rtype: str + """ + sign_values = { + **values, + 'key': self.payumoney_merchant_key, + 'salt': self.payumoney_merchant_salt, + } + if incoming: + keys = 'salt|status||||||udf5|udf4|udf3|udf2|udf1|email|firstname|productinfo|amount|' \ + 'txnid|key' + sign = '|'.join(f'{sign_values.get(k) or ""}' for k in keys.split('|')) + else: # outgoing + keys = 'key|txnid|amount|productinfo|firstname|email|udf1|udf2|udf3|udf4|udf5||||||salt' + sign = '|'.join(f'{sign_values.get(k) or ""}' for k in keys.split('|')) + return hashlib.sha512(sign.encode('utf-8')).hexdigest() + + #=== BUSINESS METHODS ===# + + def _get_default_payment_method_codes(self): + """ Override of `payment` to return the default payment method codes. """ + default_codes = super()._get_default_payment_method_codes() + if self.code != 'payumoney': + return default_codes + return DEFAULT_PAYMENT_METHODS_CODES diff --git a/models/payment_transaction.py b/models/payment_transaction.py new file mode 100644 index 0000000..7cdfd43 --- /dev/null +++ b/models/payment_transaction.py @@ -0,0 +1,105 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +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_payumoney.controllers.main import PayUMoneyController + + +class PaymentTransaction(models.Model): + _inherit = 'payment.transaction' + + def _get_specific_rendering_values(self, processing_values): + """ Override of payment to return Payumoney-specific rendering values. + + Note: self.ensure_one() from `_get_processing_values` + + :param dict processing_values: The generic and specific processing values of the transaction + :return: The dict of provider-specific processing values + :rtype: dict + """ + res = super()._get_specific_rendering_values(processing_values) + if self.provider_code != 'payumoney': + return res + + first_name, last_name = payment_utils.split_partner_name(self.partner_id.name) + api_url = 'https://secure.payu.in/_payment' if self.provider_id.state == 'enabled' \ + else 'https://sandboxsecure.payu.in/_payment' + payumoney_values = { + 'key': self.provider_id.payumoney_merchant_key, + 'txnid': self.reference, + 'amount': self.amount, + 'productinfo': self.reference, + 'firstname': first_name, + 'lastname': last_name, + 'email': self.partner_email, + 'phone': self.partner_phone, + 'return_url': urls.url_join(self.get_base_url(), PayUMoneyController._return_url), + 'api_url': api_url, + } + payumoney_values['hash'] = self.provider_id._payumoney_generate_sign( + payumoney_values, incoming=False, + ) + return payumoney_values + + def _get_tx_from_notification_data(self, provider_code, notification_data): + """ Override of payment to find the transaction based on Payumoney 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 were received + :raise: ValidationError if the data match no transaction + """ + tx = super()._get_tx_from_notification_data(provider_code, notification_data) + if provider_code != 'payumoney' or len(tx) == 1: + return tx + + reference = notification_data.get('txnid') + if not reference: + raise ValidationError( + "PayUmoney: " + _("Received data with missing reference (%s)", reference) + ) + + tx = self.search([('reference', '=', reference), ('provider_code', '=', 'payumoney')]) + if not tx: + raise ValidationError( + "PayUmoney: " + _("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 Payumoney data. + + Note: self.ensure_one() + + :param dict notification_data: The notification data sent by the provider + :return: None + """ + super()._process_notification_data(notification_data) + if self.provider_code != 'payumoney': + return + + # Update the provider reference. + self.provider_reference = notification_data.get('payuMoneyId') + + # Update the payment method + payment_method_type = notification_data.get('bankcode', '') + payment_method = self.env['payment.method']._get_from_code(payment_method_type) + self.payment_method_id = payment_method or self.payment_method_id + + # Update the payment state. + status = notification_data.get('status') + if status == 'success': + self._set_done() + else: # 'failure' + # See https://www.payumoney.com/pdf/PayUMoney-Technical-Integration-Document.pdf + error_code = notification_data.get('Error') + self._set_error( + "PayUmoney: " + _("The payment encountered an error with code %s", error_code) + ) diff --git a/static/description/icon.png b/static/description/icon.png new file mode 100644 index 0000000..15c770d Binary files /dev/null and b/static/description/icon.png differ diff --git a/static/description/icon.svg b/static/description/icon.svg new file mode 100644 index 0000000..51943ad --- /dev/null +++ b/static/description/icon.svg @@ -0,0 +1 @@ + diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..709b009 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1,4 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import common +from . import test_payumoney diff --git a/tests/common.py b/tests/common.py new file mode 100644 index 0000000..771927e --- /dev/null +++ b/tests/common.py @@ -0,0 +1,66 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo.addons.payment.tests.common import PaymentCommon + + +class PayumoneyCommon(PaymentCommon): + + @classmethod + def setUpClass(cls): + super().setUpClass() + + cls.payumoney = cls._prepare_provider('payumoney', update_values={ + 'payumoney_merchant_key': 'dummy', + 'payumoney_merchant_salt': 'dummy', + }) + + # Override default values + cls.provider = cls.payumoney + cls.currency = cls._prepare_currency('INR') + + cls.notification_data = { + 'PG_TYPE': 'HDFCPG', + 'addedon': '2022-01-19 21:36:05', + 'address1': '', + 'address2': '', + 'amount': '100.00', + 'amount_split': '{"PAYU":"100.00"}', + 'bank_ref_num': '429387287430473', + 'bankcode': 'VISA', + 'cardhash': 'This field is no longer supported in postback params.', + 'cardnum': '401200XXXXXX1112', + 'city': '', + 'country': '', + 'discount': '0.00', + 'email': 'admin@yourcompany.example.com', + 'encryptedPaymentId': 'A45B5A1E189A9FC89C0E150F2E6EF074', + 'error': 'E000', + 'error_Message': 'No Error', + 'field1': '021268586345', + 'field2': '315728', + 'field3': '429387287430473', + 'field4': 'ejRWR1J6RFRQWnd1c1BXb2FTbVk=', + 'field5': '05', + 'field6': '', + 'field7': 'AUTHPOSITIVE', + 'field8': '', + 'field9': '', + 'firstname': 'Mitchell', + 'giftCardIssued': 'true', + 'hash': '6618df5167d46785efeb0ef392d9a150de0c6e56699eb67898ebc690202fa5fe53cee1290b2ca2dfdc307e5bff2518e30dfa680923b538d7ab7f1624a4a9baa5', + 'isConsentPayment': '0', + 'key': 'GuWsdB4T', + 'lastname': '', + 'mihpayid': '9084338127', + 'mode': 'CC', + 'name_on_card': 'ABC DEF', + 'net_amount_debit': '100', + 'payuMoneyId': '251115271', + 'phone': '5555555555', + 'productinfo': 'anv-test-20220118140529', + 'state': '', + 'status': 'success', + 'txnid': cls.reference, + 'unmappedstatus': 'captured', + 'zipcode': '', + } diff --git a/tests/test_payumoney.py b/tests/test_payumoney.py new file mode 100644 index 0000000..3a40174 --- /dev/null +++ b/tests/test_payumoney.py @@ -0,0 +1,83 @@ +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from werkzeug.exceptions import Forbidden + +from odoo.tests import tagged +from odoo.tools import mute_logger + +from odoo.addons.payment import utils as payment_utils +from odoo.addons.payment.tests.http_common import PaymentHttpCommon +from odoo.addons.payment_payumoney.controllers.main import PayUMoneyController +from odoo.addons.payment_payumoney.tests.common import PayumoneyCommon + + +@tagged('post_install', '-at_install') +class PayUMoneyTest(PayumoneyCommon, PaymentHttpCommon): + + def test_compatible_providers(self): + providers = self.env['payment.provider']._get_compatible_providers( + self.company.id, self.partner.id, self.amount, currency_id=self.currency.id + ) + self.assertIn(self.payumoney, providers) + + providers = self.env['payment.provider']._get_compatible_providers( + self.company.id, self.partner.id, self.amount, currency_id=self.currency_euro.id + ) + self.assertNotIn(self.payumoney, providers) + + def test_redirect_form_values(self): + tx = self._create_transaction(flow='redirect') + with mute_logger('odoo.addons.payment.models.payment_transaction'): + processing_values = tx._get_processing_values() + + form_info = self._extract_values_from_html_form(processing_values['redirect_form_html']) + first_name, last_name = payment_utils.split_partner_name(self.partner.name) + return_url = self._build_url(PayUMoneyController._return_url) + expected_values = { + 'key': self.payumoney.payumoney_merchant_key, + 'txnid': self.reference, + 'amount': str(self.amount), + 'productinfo': self.reference, + 'firstname': first_name, + 'lastname': last_name, + 'email': self.partner.email, + 'phone': self.partner.phone, + 'surl': return_url, + 'furl': return_url, + 'service_provider': 'payu_paisa', + } + expected_values['hash'] = self.payumoney._payumoney_generate_sign( + expected_values, incoming=False, + ) + self.assertEqual(form_info['action'], + 'https://sandboxsecure.payu.in/_payment') + self.assertDictEqual(form_info['inputs'], expected_values, + "PayUMoney: invalid inputs specified in the redirect form.") + + def test_accept_notification_with_valid_signature(self): + """ Test the verification of a notification with a valid signature. """ + tx = self._create_transaction('redirect') + self._assert_does_not_raise( + Forbidden, + PayUMoneyController._verify_notification_signature, + self.notification_data, + tx, + ) + + @mute_logger('odoo.addons.payment_payumoney.controllers.main') + def test_reject_notification_with_missing_signature(self): + """ Test the verification of a notification with a missing signature. """ + tx = self._create_transaction('redirect') + payload = dict(self.notification_data, hash=None) + self.assertRaises( + Forbidden, PayUMoneyController._verify_notification_signature, payload, tx + ) + + @mute_logger('odoo.addons.payment_payumoney.controllers.main') + def test_reject_notification_with_invalid_signature(self): + """ Test the verification of a notification with an invalid signature. """ + tx = self._create_transaction('redirect') + payload = dict(self.notification_data, hash='dummy') + self.assertRaises( + Forbidden, PayUMoneyController._verify_notification_signature, payload, tx + ) diff --git a/views/payment_payumoney_templates.xml b/views/payment_payumoney_templates.xml new file mode 100644 index 0000000..bf8070b --- /dev/null +++ b/views/payment_payumoney_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..d82c45f --- /dev/null +++ b/views/payment_provider_views.xml @@ -0,0 +1,26 @@ + + + + + PayUMoney Provider Form + payment.provider + + + + + This provider is deprecated. + Consider disabling it and moving to Razorpay. + + + + + + + + + + + +