diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/payment_payumoney | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/payment_payumoney')
78 files changed, 6457 insertions, 0 deletions
diff --git a/addons/payment_payumoney/__init__.py b/addons/payment_payumoney/__init__.py new file mode 100644 index 00000000..6cf313c4 --- /dev/null +++ b/addons/payment_payumoney/__init__.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import controllers +from odoo.addons.payment.models.payment_acquirer import create_missing_journal_for_acquirers +from odoo.addons.payment import reset_payment_provider + +def uninstall_hook(cr, registry): + reset_payment_provider(cr, registry, 'payumoney') diff --git a/addons/payment_payumoney/__manifest__.py b/addons/payment_payumoney/__manifest__.py new file mode 100644 index 00000000..d9d30f29 --- /dev/null +++ b/addons/payment_payumoney/__manifest__.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'PayuMoney Payment Acquirer', + 'category': 'Accounting/Payment Acquirers', + 'sequence': 375, + 'summary': 'Payment Acquirer: PayuMoney Implementation', + 'description': """ + PayuMoney Payment Acquirer for India. + + PayUmoney payment gateway supports only INR currency. + """, + 'depends': ['payment'], + 'data': [ + 'views/payment_views.xml', + 'views/payment_payumoney_templates.xml', + 'data/payment_acquirer_data.xml', + ], + 'application': True, + 'post_init_hook': 'create_missing_journal_for_acquirers', + 'uninstall_hook': 'uninstall_hook', + 'license': 'LGPL-3', +} diff --git a/addons/payment_payumoney/controllers/__init__.py b/addons/payment_payumoney/controllers/__init__.py new file mode 100644 index 00000000..5d4b25db --- /dev/null +++ b/addons/payment_payumoney/controllers/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import main diff --git a/addons/payment_payumoney/controllers/main.py b/addons/payment_payumoney/controllers/main.py new file mode 100644 index 00000000..a4715e17 --- /dev/null +++ b/addons/payment_payumoney/controllers/main.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import logging +import pprint +import werkzeug + +from odoo import http +from odoo.http import request + +_logger = logging.getLogger(__name__) + + +class PayuMoneyController(http.Controller): + @http.route(['/payment/payumoney/return', '/payment/payumoney/cancel', '/payment/payumoney/error'], type='http', auth='public', csrf=False, save_session=False) + def payu_return(self, **post): + """ PayUmoney. + The session cookie created by Odoo has not the attribute SameSite. Most of browsers will force this attribute + with the value 'Lax'. After the payment, PayUMoney will perform a POST request on this route. For all these reasons, + the cookie won't be added to the request. As a result, if we want to save the session, the server will create + a new session cookie. Therefore, the previous session and all related information will be lost, so it will lead + to undesirable behaviors. This is the reason why `save_session=False` is needed. + """ + _logger.info( + 'PayUmoney: entering form_feedback with post data %s', pprint.pformat(post)) + if post: + request.env['payment.transaction'].sudo().form_feedback(post, 'payumoney') + return werkzeug.utils.redirect('/payment/process') diff --git a/addons/payment_payumoney/data/payment_acquirer_data.xml b/addons/payment_payumoney/data/payment_acquirer_data.xml new file mode 100644 index 00000000..b7005465 --- /dev/null +++ b/addons/payment_payumoney/data/payment_acquirer_data.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <record id="payment.payment_acquirer_payu" model="payment.acquirer"> + <field name="name">PayUmoney</field> + <field name="image_128" type="base64" file="payment_payumoney/static/src/img/payumoney_icon.png"/> + <field name="provider">payumoney</field> + <field name="company_id" ref="base.main_company"/> + <field name="view_template_id" ref="payumoney_form"/> + </record> + </data> +</odoo> diff --git a/addons/payment_payumoney/i18n/af.po b/addons/payment_payumoney/i18n/af.po new file mode 100644 index 00000000..3d3a3eb6 --- /dev/null +++ b/addons/payment_payumoney/i18n/af.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/am.po b/addons/payment_payumoney/i18n/am.po new file mode 100644 index 00000000..2cdbc5bc --- /dev/null +++ b/addons/payment_payumoney/i18n/am.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/ar.po b/addons/payment_payumoney/i18n/ar.po new file mode 100644 index 00000000..bbc0f462 --- /dev/null +++ b/addons/payment_payumoney/i18n/ar.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. 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 "Merchant Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: shasign غير صالح، المستلم %s, المحسوب %s, للبيانات %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: البيانات المستلمة لرقم الإشارة %s، تم العثور على طلبات متعددة" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: البيانات المستلمة لرقم الإشارة %s، لم يُعثر على طلبات" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "المزود" diff --git a/addons/payment_payumoney/i18n/az.po b/addons/payment_payumoney/i18n/az.po new file mode 100644 index 00000000..0c0022d0 --- /dev/null +++ b/addons/payment_payumoney/i18n/az.po @@ -0,0 +1,117 @@ +# 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: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/bg.po b/addons/payment_payumoney/i18n/bg.po new file mode 100644 index 00000000..c71c4619 --- /dev/null +++ b/addons/payment_payumoney/i18n/bg.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: невалиден шасинг, получен %s, изчислен %s, за данни %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: получени данни за референция %s; открити множество поръчки" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: получени данни за референция %s; не е открита поръчка" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Доставчик" diff --git a/addons/payment_payumoney/i18n/bn.po b/addons/payment_payumoney/i18n/bn.po new file mode 100644 index 00000000..b46351cb --- /dev/null +++ b/addons/payment_payumoney/i18n/bn.po @@ -0,0 +1,94 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "আইডি " + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "পেমেন্ট লেনদেন" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/bs.po b/addons/payment_payumoney/i18n/bs.po new file mode 100644 index 00000000..1cb15b88 --- /dev/null +++ b/addons/payment_payumoney/i18n/bs.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\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 +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Ručna konfiguracija" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Slipovi" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Žičani prenos" diff --git a/addons/payment_payumoney/i18n/ca.po b/addons/payment_payumoney/i18n/ca.po new file mode 100644 index 00000000..8df51958 --- /dev/null +++ b/addons/payment_payumoney/i18n/ca.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mètode de pagament" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveïdor" diff --git a/addons/payment_payumoney/i18n/ckb.po b/addons/payment_payumoney/i18n/ckb.po new file mode 100644 index 00000000..c32595ea --- /dev/null +++ b/addons/payment_payumoney/i18n/ckb.po @@ -0,0 +1,94 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ناسنامە" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/cs.po b/addons/payment_payumoney/i18n/cs.po new file mode 100644 index 00000000..f405dfe8 --- /dev/null +++ b/addons/payment_payumoney/i18n/cs.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# Jiří Podhorecký, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Jiří Podhorecký, 2020\n" +"Language-Team: Czech (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Platební brána" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovatel" diff --git a/addons/payment_payumoney/i18n/da.po b/addons/payment_payumoney/i18n/da.po new file mode 100644 index 00000000..e8b6d947 --- /dev/null +++ b/addons/payment_payumoney/i18n/da.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Merchant nummer" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Forhandler Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUMoney: ugyldigt shasign, modtaget %s, udregnet %s, for data %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: Modtaget data for reference %s; flere ordre fundet" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: Modtaget data for reference %s; ingen ordre fundet" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmonet: Modtog data med manglende reference (%s) eller pay_id (%s) eller " +"shasign (%s)" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsindløser" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Udbyder" diff --git a/addons/payment_payumoney/i18n/de.po b/addons/payment_payumoney/i18n/de.po new file mode 100644 index 00000000..c3bdeba7 --- /dev/null +++ b/addons/payment_payumoney/i18n/de.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: German (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Händlerschlüssel" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Händler Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney: ungültiges Shasign, %s erhalten, %s berechnet, %s für Daten" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: empfangene Daten für Referenz %s; Mehrfachaufträge gefunden" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: empfangene Daten für Referenz %s; kein Auftrag gefunden" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Zahlungsanbieter" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Anbieter" diff --git a/addons/payment_payumoney/i18n/el.po b/addons/payment_payumoney/i18n/el.po new file mode 100644 index 00000000..167dc535 --- /dev/null +++ b/addons/payment_payumoney/i18n/el.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "Κωδικός" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney: μη έγκυρη υπογραφή sha, λήφθηκε %s, υπολογισμένο %s, για τα " +"δεδομένα %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: λήφθηκαν δεδομένα αναφοράς %s, βρέθηκαν πολλαπλές παραγγελίες " + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: λήφθηκαν δεδομένα αναφοράς %s, δεν βρέθηκε παραγγελία" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmoney: ληφθέντα δεδομένα με αναφορά που λείπει (%s) ή pay_id (%s) ή " +"shasign (%s)" + +#. 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_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Πάροχος" diff --git a/addons/payment_payumoney/i18n/eo.po b/addons/payment_payumoney/i18n/eo.po new file mode 100644 index 00000000..1733493d --- /dev/null +++ b/addons/payment_payumoney/i18n/eo.po @@ -0,0 +1,90 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/es.po b/addons/payment_payumoney/i18n/es.po new file mode 100644 index 00000000..7b134aed --- /dev/null +++ b/addons/payment_payumoney/i18n/es.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.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=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clave del comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: shasign nulo, %s recibido, %s calculado, para datos %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: datos recibidos para la referencia %s, pedidos múltiples " +"encontrados" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" +"PayUmoney: datos recibidos para la referencia%s; ningún pedido encontrado" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmoney: datos recibidos sin referencia (%s) o pay_id (%s) o shasign (%s)" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pago del comprador" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" diff --git a/addons/payment_payumoney/i18n/es_CL.po b/addons/payment_payumoney/i18n/es_CL.po new file mode 100644 index 00000000..c2a9c399 --- /dev/null +++ b/addons/payment_payumoney/i18n/es_CL.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/es_CO.po b/addons/payment_payumoney/i18n/es_CO.po new file mode 100644 index 00000000..f9620612 --- /dev/null +++ b/addons/payment_payumoney/i18n/es_CO.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/es_CR.po b/addons/payment_payumoney/i18n/es_CR.po new file mode 100644 index 00000000..786de3e7 --- /dev/null +++ b/addons/payment_payumoney/i18n/es_CR.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/es_MX.po b/addons/payment_payumoney/i18n/es_MX.po new file mode 100644 index 00000000..823ba0ea --- /dev/null +++ b/addons/payment_payumoney/i18n/es_MX.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clave del comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Merchant Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: shasign nulo, %s recibido, %s calculado, para datos %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: datos recibidos para la referencia %s, pedidos múltiples " +"encontrados" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" +"PayUmoney: datos recibidos para la referencia%s; ningún pedido encontrado" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmoney: datos recibidos sin referencia (%s) o pay_id (%s) o shasign (%s)" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pago del comprador" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" diff --git a/addons/payment_payumoney/i18n/es_PE.po b/addons/payment_payumoney/i18n/es_PE.po new file mode 100644 index 00000000..2b548821 --- /dev/null +++ b/addons/payment_payumoney/i18n/es_PE.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/es_VE.po b/addons/payment_payumoney/i18n/es_VE.po new file mode 100644 index 00000000..4654d32b --- /dev/null +++ b/addons/payment_payumoney/i18n/es_VE.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/et.po b/addons/payment_payumoney/i18n/et.po new file mode 100644 index 00000000..76ffc10c --- /dev/null +++ b/addons/payment_payumoney/i18n/et.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Triine Aavik <triine@avalah.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Marek Pontus, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Martin Aavastik <martin@avalah.ee>, 2020\n" +"Language-Team: Estonian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Makse saaja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Varustaja" diff --git a/addons/payment_payumoney/i18n/eu.po b/addons/payment_payumoney/i18n/eu.po new file mode 100644 index 00000000..921d1c57 --- /dev/null +++ b/addons/payment_payumoney/i18n/eu.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "Ordainketa transakzioa" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Hornitzailea " diff --git a/addons/payment_payumoney/i18n/fa.po b/addons/payment_payumoney/i18n/fa.po new file mode 100644 index 00000000..8b9141e6 --- /dev/null +++ b/addons/payment_payumoney/i18n/fa.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2018 +# Hamed Mohammadi <hamed@dehongi.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2018\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"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 +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "فراهمکننده" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/fi.po b/addons/payment_payumoney/i18n/fi.po new file mode 100644 index 00000000..bb6d6790 --- /dev/null +++ b/addons/payment_payumoney/i18n/fi.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020\n" +"Language-Team: Finnish (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Maksun vastaanottaja" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Palveluntarjoaja" diff --git a/addons/payment_payumoney/i18n/fr.po b/addons/payment_payumoney/i18n/fr.po new file mode 100644 index 00000000..32ce4764 --- /dev/null +++ b/addons/payment_payumoney/i18n/fr.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Frédéric GILSON <frederic.gilson@logicasoft.eu>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Frédéric GILSON <frederic.gilson@logicasoft.eu>, 2020\n" +"Language-Team: French (https://www.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=2; plural=(n > 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Clé marchand" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salage du vendeur" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney : shasign incorrect, %s reçu, %s calculé pour les données %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney : données reçues pour la référence %s ; plusieurs commandes " +"trouvées" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" +"PayUmoney : données reçues pour la référence %s ; aucune commande trouvée" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermédiaire de paiement" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Transporteur" diff --git a/addons/payment_payumoney/i18n/gl.po b/addons/payment_payumoney/i18n/gl.po new file mode 100644 index 00000000..38219c69 --- /dev/null +++ b/addons/payment_payumoney/i18n/gl.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/gu.po b/addons/payment_payumoney/i18n/gu.po new file mode 100644 index 00000000..71c34503 --- /dev/null +++ b/addons/payment_payumoney/i18n/gu.po @@ -0,0 +1,117 @@ +# 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: 2018-08-02 09:56+0000\n" +"PO-Revision-Date: 2018-08-02 09:56+0000\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/he.po b/addons/payment_payumoney/i18n/he.po new file mode 100644 index 00000000..4e639db3 --- /dev/null +++ b/addons/payment_payumoney/i18n/he.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# ExcaliberX <excaliberx@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n" +"Language-Team: Hebrew (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "מזהה" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "ספק" diff --git a/addons/payment_payumoney/i18n/hi.po b/addons/payment_payumoney/i18n/hi.po new file mode 100644 index 00000000..6fa34db2 --- /dev/null +++ b/addons/payment_payumoney/i18n/hi.po @@ -0,0 +1,90 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/hr.po b/addons/payment_payumoney/i18n/hr.po new file mode 100644 index 00000000..e78766d1 --- /dev/null +++ b/addons/payment_payumoney/i18n/hr.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Tina Milas, 2020 +# Bole <bole@dajmi5.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2021\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\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__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Ključ trgovca" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salt trgovca" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: zaprimljeni podaci za referencu %s; pronađeno više naloga" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: zaprimljeni podaci za referencu %s; nema pronađenih naloga" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_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 " diff --git a/addons/payment_payumoney/i18n/hu.po b/addons/payment_payumoney/i18n/hu.po new file mode 100644 index 00000000..52d5971f --- /dev/null +++ b/addons/payment_payumoney/i18n/hu.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n" +"Language-Team: Hungarian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "Azonosító" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +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 +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Szolgáltató" diff --git a/addons/payment_payumoney/i18n/id.po b/addons/payment_payumoney/i18n/id.po new file mode 100644 index 00000000..d2d337e1 --- /dev/null +++ b/addons/payment_payumoney/i18n/id.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Bonny Useful <bonny.useful@gmail.com>, 2020 +# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020\n" +"Language-Team: Indonesian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Kunci Pedangan" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pemilik Tagihan" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Pemberi" diff --git a/addons/payment_payumoney/i18n/is.po b/addons/payment_payumoney/i18n/is.po new file mode 100644 index 00000000..f1be1b14 --- /dev/null +++ b/addons/payment_payumoney/i18n/is.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/it.po b/addons/payment_payumoney/i18n/it.po new file mode 100644 index 00000000..682a0041 --- /dev/null +++ b/addons/payment_payumoney/i18n/it.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# SebastianoPistore <SebastianoPistore.info@protonmail.ch>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2020\n" +"Language-Team: Italian (https://www.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=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Chiave del commerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Salt del commerciante" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney: shasign non valido, ricevuto %s, elaborato %s, per i dati %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: ricevuti dati con riferimento %s; trovati ordini multipli" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: ricevuti dati con riferimento %s; nessun ordine trovato" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmoney: ricevuti dati con riferimento (%s), pay_id (%s) o shasign (%s) " +"mancante" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sistema di pagamento" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornitore" diff --git a/addons/payment_payumoney/i18n/ja.po b/addons/payment_payumoney/i18n/ja.po new file mode 100644 index 00000000..635bac34 --- /dev/null +++ b/addons/payment_payumoney/i18n/ja.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020\n" +"Language-Team: Japanese (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "プロバイダ" diff --git a/addons/payment_payumoney/i18n/ka.po b/addons/payment_payumoney/i18n/ka.po new file mode 100644 index 00000000..01ee74ec --- /dev/null +++ b/addons/payment_payumoney/i18n/ka.po @@ -0,0 +1,95 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Temur, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Temur, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/km.po b/addons/payment_payumoney/i18n/km.po new file mode 100644 index 00000000..62bcf5e7 --- /dev/null +++ b/addons/payment_payumoney/i18n/km.po @@ -0,0 +1,120 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Sengtha Chay <sengtha@gmail.com>, 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/ko.po b/addons/payment_payumoney/i18n/ko.po new file mode 100644 index 00000000..3ec4d664 --- /dev/null +++ b/addons/payment_payumoney/i18n/ko.po @@ -0,0 +1,95 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2020\n" +"Language-Team: Korean (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney : 올바르지 않은 shasign, 수신된 %s, 계산된 %s, 다음의 데이터 %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney : 참조 %s에 대한 수신 데이터; 다중 주문 발견" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney : 참조 %s에 대한 수신 데이터; 주문이 없습니다" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "결제 처리" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "공급업체" diff --git a/addons/payment_payumoney/i18n/lb.po b/addons/payment_payumoney/i18n/lb.po new file mode 100644 index 00000000..7dc921f4 --- /dev/null +++ b/addons/payment_payumoney/i18n/lb.po @@ -0,0 +1,72 @@ +# 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: 2019-08-26 08:16+0000\n" +"PO-Revision-Date: 2019-08-26 09:12+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/lo.po b/addons/payment_payumoney/i18n/lo.po new file mode 100644 index 00000000..ae2eec91 --- /dev/null +++ b/addons/payment_payumoney/i18n/lo.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/lt.po b/addons/payment_payumoney/i18n/lt.po new file mode 100644 index 00000000..7df79251 --- /dev/null +++ b/addons/payment_payumoney/i18n/lt.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Pardavėjo raktas" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Pardavėjo numeris (salt)" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: negalimas shasign, gauta %s, suskaičiuota %s, duomenims %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: gauti duomenys numeriui %s; rasti keli užsakymai" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: gauti duomenys numeriui %s; nerasta užsakymų" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mokėjimo surinkėjas" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Tiekėjas" diff --git a/addons/payment_payumoney/i18n/lv.po b/addons/payment_payumoney/i18n/lv.po new file mode 100644 index 00000000..ca34a9c4 --- /dev/null +++ b/addons/payment_payumoney/i18n/lv.po @@ -0,0 +1,90 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Language-Team: Latvian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/mn.po b/addons/payment_payumoney/i18n/mn.po new file mode 100644 index 00000000..7419c372 --- /dev/null +++ b/addons/payment_payumoney/i18n/mn.po @@ -0,0 +1,95 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: буруу shasign, хүлээн авсан %s, тооцоолсон %s, %s өгөгдөлд" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: %s кодод өгөгдөл хүлээн авсан; олон захиалга олдсон" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: %s кодод өгөгдөл хүлээн авсан; захиалга олдсонгүй" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" diff --git a/addons/payment_payumoney/i18n/nb.po b/addons/payment_payumoney/i18n/nb.po new file mode 100644 index 00000000..e92ad6f7 --- /dev/null +++ b/addons/payment_payumoney/i18n/nb.po @@ -0,0 +1,95 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: Mottatt data for referanse %s; flere ordrer funnet" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: Mottatt data for referanse %s; ingen ordre funnet" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsinnløser" + +#. 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 "Innløser" diff --git a/addons/payment_payumoney/i18n/nl.po b/addons/payment_payumoney/i18n/nl.po new file mode 100644 index 00000000..5a66439c --- /dev/null +++ b/addons/payment_payumoney/i18n/nl.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Handelaars sleutel" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Handelaar salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: Ongeldige shasign, ontvangen %s, berekend %s, voor data %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: data ontvangen voor referentie %s; meerdere orders gevonden" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: data ontvangen voor referentie %s; geen order gevonden" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmoney: data ontvangen met missende referentie (%s) of pay_id (%s) of " +"shasign (%s)" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsprovider" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" diff --git a/addons/payment_payumoney/i18n/nl_BE.po b/addons/payment_payumoney/i18n/nl_BE.po new file mode 100644 index 00000000..0802b935 --- /dev/null +++ b/addons/payment_payumoney/i18n/nl_BE.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/payment_payumoney.pot b/addons/payment_payumoney/i18n/payment_payumoney.pot new file mode 100644 index 00000000..c742f00e --- /dev/null +++ b/addons/payment_payumoney/i18n/payment_payumoney.pot @@ -0,0 +1,90 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-10-02 14:11+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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/pl.po b/addons/payment_payumoney/i18n/pl.po new file mode 100644 index 00000000..79ab325b --- /dev/null +++ b/addons/payment_payumoney/i18n/pl.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020\n" +"Language-Team: Polish (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Beneficjent 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 +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Dostawca" diff --git a/addons/payment_payumoney/i18n/pt.po b/addons/payment_payumoney/i18n/pt.po new file mode 100644 index 00000000..7168f09f --- /dev/null +++ b/addons/payment_payumoney/i18n/pt.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.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=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Código de Comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermediário 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 +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provedor" diff --git a/addons/payment_payumoney/i18n/pt_BR.po b/addons/payment_payumoney/i18n/pt_BR.po new file mode 100644 index 00000000..ad8c671a --- /dev/null +++ b/addons/payment_payumoney/i18n/pt_BR.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.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=2; plural=(n > 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Chave do Comerciante" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Sal comercial" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney: shasign inválido, recebido %s, processado %s, para dados %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" +"PayUmoney: dados recebidos para referência %s; várias ordens encontradas" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" +"PayUmoney: dados recebidos para referência %s; nenhuma ordem encontrada" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pagamento" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do Pagamento" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornecedor" diff --git a/addons/payment_payumoney/i18n/ro.po b/addons/payment_payumoney/i18n/ro.po new file mode 100644 index 00000000..cfe69324 --- /dev/null +++ b/addons/payment_payumoney/i18n/ro.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\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__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Cheie Comerciant" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Procesator Plată" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tranzacție plată" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Furnizor" diff --git a/addons/payment_payumoney/i18n/ru.po b/addons/payment_payumoney/i18n/ru.po new file mode 100644 index 00000000..27ef2b6d --- /dev/null +++ b/addons/payment_payumoney/i18n/ru.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev <yelizariev@it-projects.info>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Oleg Kuryan <oleg@ventor.tech>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n" +"Language-Team: Russian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "Идентификатор" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. 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 "Merchant Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney: недопустимый shasign, получил %s, вычисленный %s, для данных %s " + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: получил данные для справки %s ; найдено несколько заказов" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: получил данные для справки %s ; заказы не найдены" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" diff --git a/addons/payment_payumoney/i18n/si.po b/addons/payment_payumoney/i18n/si.po new file mode 100644 index 00000000..22465885 --- /dev/null +++ b/addons/payment_payumoney/i18n/si.po @@ -0,0 +1,90 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/sk.po b/addons/payment_payumoney/i18n/sk.po new file mode 100644 index 00000000..f7f89400 --- /dev/null +++ b/addons/payment_payumoney/i18n/sk.po @@ -0,0 +1,99 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# 192015edb78c7397bdecc2172c7447b3, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Príjemca platby " + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovateľ" diff --git a/addons/payment_payumoney/i18n/sl.po b/addons/payment_payumoney/i18n/sl.po new file mode 100644 index 00000000..bc87d465 --- /dev/null +++ b/addons/payment_payumoney/i18n/sl.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: matjaz k <matjaz@mentis.si>, 2021\n" +"Language-Team: Slovenian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ponudnik plačilne storitve" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Ponudnik" diff --git a/addons/payment_payumoney/i18n/sr.po b/addons/payment_payumoney/i18n/sr.po new file mode 100644 index 00000000..2aaae3ec --- /dev/null +++ b/addons/payment_payumoney/i18n/sr.po @@ -0,0 +1,117 @@ +# 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: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Language-Team: Serbian (https://www.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 +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/sr@latin.po b/addons/payment_payumoney/i18n/sr@latin.po new file mode 100644 index 00000000..eee9ee13 --- /dev/null +++ b/addons/payment_payumoney/i18n/sr@latin.po @@ -0,0 +1,68 @@ +# 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: 2017-09-20 09:53+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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\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.py:146 +#, python-format +msgid "PayUmoney: feedback error" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" diff --git a/addons/payment_payumoney/i18n/sv.po b/addons/payment_payumoney/i18n/sv.po new file mode 100644 index 00000000..f21b5583 --- /dev/null +++ b/addons/payment_payumoney/i18n/sv.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Daniel Forslund <daniel.forslund@gmail.com>, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalnings Inlösare" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Leverantör" diff --git a/addons/payment_payumoney/i18n/th.po b/addons/payment_payumoney/i18n/th.po new file mode 100644 index 00000000..ce152212 --- /dev/null +++ b/addons/payment_payumoney/i18n/th.po @@ -0,0 +1,121 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018\n" +"Language-Team: Thai (https://www.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 +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. 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 +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:108 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:102 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:99 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:94 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shashign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "ผู้ให้บริการ" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_payumoney +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_payumoney/i18n/tr.po b/addons/payment_payumoney/i18n/tr.po new file mode 100644 index 00000000..52f116d5 --- /dev/null +++ b/addons/payment_payumoney/i18n/tr.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Güven YILMAZ <guvenyilmaz@outlook.com.tr>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Ticari Anahtar" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Tüccar Tuzu" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: invalid shasign, received %s, computed %s, for data %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: received data for reference %s; multiple orders found" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: received data for reference %s; no order found" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ödeme Alıcısı" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Sağlayıcı" diff --git a/addons/payment_payumoney/i18n/uk.po b/addons/payment_payumoney/i18n/uk.po new file mode 100644 index 00000000..33eceb52 --- /dev/null +++ b/addons/payment_payumoney/i18n/uk.po @@ -0,0 +1,98 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021\n" +"Language-Team: Ukrainian (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key +msgid "Merchant Key" +msgstr "Ключ Merchant" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt +msgid "Merchant Salt" +msgstr "Секретний ключ Merchant" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"PayUmoney: недійсний shasign, отриманий %s, обчислений %s, для даних %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: отримані дані для довідки%s; знайдено кілька замовлень" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: отримані дані для довідки %s; замовлення не знайдено" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"PayUmoney: отримані дані з відсутнім референсом (%s) or pay_id (%s) or " +"shasign (%s)" + +#. 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_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" diff --git a/addons/payment_payumoney/i18n/ur.po b/addons/payment_payumoney/i18n/ur.po new file mode 100644 index 00000000..c4ec9779 --- /dev/null +++ b/addons/payment_payumoney/i18n/ur.po @@ -0,0 +1,90 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "" diff --git a/addons/payment_payumoney/i18n/vi.po b/addons/payment_payumoney/i18n/vi.po new file mode 100644 index 00000000..73161578 --- /dev/null +++ b/addons/payment_payumoney/i18n/vi.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. 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 "Merchant Salt" + +#. module: payment_payumoney +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: invalid shasign, received %s, computed %s, for data %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney: received data for reference %s; multiple orders found" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney: received data for reference %s; no order found" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_payumoney +#: model:ir.model,name:payment_payumoney.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "NCC 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 +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "Nhà cung cấp" diff --git a/addons/payment_payumoney/i18n/zh_CN.po b/addons/payment_payumoney/i18n/zh_CN.po new file mode 100644 index 00000000..7c9174ea --- /dev/null +++ b/addons/payment_payumoney/i18n/zh_CN.po @@ -0,0 +1,97 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\n" +"Language-Team: Chinese (China) (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney: 无效的 shasign,对于数据 %s, 已接收 %s, 已计算%s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney:已接收参考 %s 的数据;已找到多个订单" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney:已接收参考 %s 的数据;未找到订单" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "物流商" diff --git a/addons/payment_payumoney/i18n/zh_TW.po b/addons/payment_payumoney/i18n/zh_TW.po new file mode 100644 index 00000000..ad9556c3 --- /dev/null +++ b/addons/payment_payumoney/i18n/zh_TW.po @@ -0,0 +1,95 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_payumoney +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Martin Trigaux, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-10-02 14:11+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Martin Trigaux, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.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_acquirer__display_name +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. 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 +#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney +msgid "PayUmoney" +msgstr "PayUmoney" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: invalid shasign, received %s, computed %s, for data %s" +msgstr "PayUmoney:無效的 shasign,已接收 %s,已計算 %s,針對數據 %s" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; multiple orders found" +msgstr "PayUmoney:已接收參考 %s 的數據;已找到多個訂單" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "PayUmoney: received data for reference %s; no order found" +msgstr "PayUmoney:已接收參考 %s 的數據;未找到訂單" + +#. module: payment_payumoney +#: code:addons/payment_payumoney/models/payment.py:0 +#, python-format +msgid "" +"PayUmoney: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +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_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_payumoney +#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider +msgid "Provider" +msgstr "服務商" diff --git a/addons/payment_payumoney/models/__init__.py b/addons/payment_payumoney/models/__init__.py new file mode 100644 index 00000000..2ec5b9cd --- /dev/null +++ b/addons/payment_payumoney/models/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import payment diff --git a/addons/payment_payumoney/models/payment.py b/addons/payment_payumoney/models/payment.py new file mode 100644 index 00000000..efba9677 --- /dev/null +++ b/addons/payment_payumoney/models/payment.py @@ -0,0 +1,137 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import hashlib + +from werkzeug import urls + +from odoo import api, fields, models, _ +from odoo.addons.payment.models.payment_acquirer import ValidationError +from odoo.tools.float_utils import float_compare + +import logging + +_logger = logging.getLogger(__name__) + + +class PaymentAcquirerPayumoney(models.Model): + _inherit = 'payment.acquirer' + + provider = fields.Selection(selection_add=[ + ('payumoney', 'PayUmoney') + ], ondelete={'payumoney': 'set default'}) + payumoney_merchant_key = fields.Char(string='Merchant Key', required_if_provider='payumoney', groups='base.group_user') + payumoney_merchant_salt = fields.Char(string='Merchant Salt', required_if_provider='payumoney', groups='base.group_user') + + def _get_payumoney_urls(self, environment): + """ PayUmoney URLs""" + if environment == 'prod': + return {'payumoney_form_url': 'https://secure.payu.in/_payment'} + else: + return {'payumoney_form_url': 'https://sandboxsecure.payu.in/_payment'} + + def _payumoney_generate_sign(self, inout, values): + """ Generate the shasign for incoming or outgoing communications. + :param self: the self browse record. It should have a shakey in shakey out + :param string inout: 'in' (odoo contacting payumoney) or 'out' (payumoney + contacting odoo). + :param dict values: transaction values + + :return string: shasign + """ + if inout not in ('in', 'out'): + raise Exception("Type must be 'in' or 'out'") + + if inout == 'in': + keys = "key|txnid|amount|productinfo|firstname|email|udf1|||||||||".split('|') + sign = ''.join('%s|' % (values.get(k) or '') for k in keys) + sign += self.payumoney_merchant_salt or '' + else: + keys = "|status||||||||||udf1|email|firstname|productinfo|amount|txnid".split('|') + sign = ''.join('%s|' % (values.get(k) or '') for k in keys) + sign = self.payumoney_merchant_salt + sign + self.payumoney_merchant_key + + shasign = hashlib.sha512(sign.encode('utf-8')).hexdigest() + return shasign + + def payumoney_form_generate_values(self, values): + self.ensure_one() + base_url = self.get_base_url() + payumoney_values = dict(values, + key=self.payumoney_merchant_key, + txnid=values['reference'], + amount=values['amount'], + productinfo=values['reference'], + firstname=values.get('partner_name'), + email=values.get('partner_email'), + phone=values.get('partner_phone'), + service_provider='payu_paisa', + surl=urls.url_join(base_url, '/payment/payumoney/return'), + furl=urls.url_join(base_url, '/payment/payumoney/error'), + curl=urls.url_join(base_url, '/payment/payumoney/cancel') + ) + + payumoney_values['udf1'] = payumoney_values.pop('return_url', '/') + payumoney_values['hash'] = self._payumoney_generate_sign('in', payumoney_values) + return payumoney_values + + def payumoney_get_form_action_url(self): + self.ensure_one() + environment = 'prod' if self.state == 'enabled' else 'test' + return self._get_payumoney_urls(environment)['payumoney_form_url'] + + +class PaymentTransactionPayumoney(models.Model): + _inherit = 'payment.transaction' + + @api.model + def _payumoney_form_get_tx_from_data(self, data): + """ Given a data dict coming from payumoney, verify it and find the related + transaction record. """ + reference = data.get('txnid') + pay_id = data.get('mihpayid') + shasign = data.get('hash') + if not reference or not pay_id or not shasign: + raise ValidationError(_('PayUmoney: received data with missing reference (%s) or pay_id (%s) or shasign (%s)') % (reference, pay_id, shasign)) + + transaction = self.search([('reference', '=', reference)]) + + if not transaction: + error_msg = (_('PayUmoney: received data for reference %s; no order found') % (reference)) + raise ValidationError(error_msg) + elif len(transaction) > 1: + error_msg = (_('PayUmoney: received data for reference %s; multiple orders found') % (reference)) + raise ValidationError(error_msg) + + #verify shasign + shasign_check = transaction.acquirer_id._payumoney_generate_sign('out', data) + if shasign_check.upper() != shasign.upper(): + raise ValidationError(_('PayUmoney: invalid shasign, received %s, computed %s, for data %s') % (shasign, shasign_check, data)) + return transaction + + def _payumoney_form_get_invalid_parameters(self, data): + invalid_parameters = [] + + if self.acquirer_reference and data.get('mihpayid') != self.acquirer_reference: + invalid_parameters.append( + ('Transaction Id', data.get('mihpayid'), self.acquirer_reference)) + #check what is buyed + if float_compare(float(data.get('amount', '0.0')), self.amount, 2) != 0: + invalid_parameters.append( + ('Amount', data.get('amount'), '%.2f' % self.amount)) + + return invalid_parameters + + def _payumoney_form_validate(self, data): + status = data.get('status') + result = self.write({ + 'acquirer_reference': data.get('payuMoneyId'), + 'date': fields.Datetime.now(), + }) + if status == 'success': + self._set_transaction_done() + elif status != 'pending': + self._set_transaction_cancel() + else: + self._set_transaction_pending() + return result diff --git a/addons/payment_payumoney/static/description/icon.png b/addons/payment_payumoney/static/description/icon.png Binary files differnew file mode 100644 index 00000000..d67b2680 --- /dev/null +++ b/addons/payment_payumoney/static/description/icon.png diff --git a/addons/payment_payumoney/static/description/icon.svg b/addons/payment_payumoney/static/description/icon.svg new file mode 100644 index 00000000..dce75643 --- /dev/null +++ b/addons/payment_payumoney/static/description/icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#7CC098"/><stop offset="100%" stop-color="#5F8A71"/></linearGradient><path id="d" d="M32.423 21.58v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H34.25V34.9c0 2.9-.81 5.055-2.43 6.465-1.62 1.41-3.86 2.115-6.72 2.115-2.9 0-5.145-.7-6.735-2.1-1.59-1.4-2.385-3.56-2.385-6.48V21.58h4.71V34.9c0 .58.05 1.15.15 1.71.1.56.31 1.055.63 1.485.32.43.765.78 1.335 1.05s1.335.405 2.295.405c1.68 0 2.84-.375 3.48-1.125.64-.75.96-1.925.96-3.525V21.58h2.883zM19.25 46h2.714v1.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V37.5H38.5V31h10.536v-3.212a.342.342 0 0 0-.339-.343H39.5v-2.742h9.536c1.5 0 2.714 1.228 2.714 2.742v20.11c0 1.514-1.213 2.742-2.714 2.742H21.964c-1.5 0-2.714-1.228-2.714-2.742V46zm-3.79 9.642h-1.037V55h2.833v.642h-1.037v2.832h-.76v-2.832zM17.422 55h1.07l.809 2.389h.01L20.075 55h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V55zm23-41.42h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1zm-5-3h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1z"/><path id="e" d="M32.423 19.58v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H34.25V32.9c0 2.9-.81 5.055-2.43 6.465-1.62 1.41-3.86 2.115-6.72 2.115-2.9 0-5.145-.7-6.735-2.1-1.59-1.4-2.385-3.56-2.385-6.48V19.58h4.71V32.9c0 .58.05 1.15.15 1.71.1.56.31 1.055.63 1.485.32.43.765.78 1.335 1.05s1.335.405 2.295.405c1.68 0 2.84-.375 3.48-1.125.64-.75.96-1.925.96-3.525V19.58h2.883zM19.25 44h2.714v1.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V35.5H38.5V29h10.536v-3.212a.342.342 0 0 0-.339-.343H39.5v-2.742h9.536c1.5 0 2.714 1.228 2.714 2.742v20.11c0 1.514-1.213 2.742-2.714 2.742H21.964c-1.5 0-2.714-1.228-2.714-2.742V44zm-3.79 9.642h-1.037V53h2.833v.642h-1.037v2.832h-.76v-2.832zM17.422 53h1.07l.809 2.389h.01L20.075 53h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V53zm23-41.42h3a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1h-3a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1zm-5-3h2a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M4 69c-2 0-4-1-4-4V33.916L16 19.58l3.25.42L35 8.58 38 12l-.89 2 2.584-2 4.729 4-5.923 6.703L48 23l3.576 1.968-.236 22.01L39.224 69H4z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
\ No newline at end of file diff --git a/addons/payment_payumoney/static/src/img/payumoney_icon.png b/addons/payment_payumoney/static/src/img/payumoney_icon.png Binary files differnew file mode 100644 index 00000000..4055c624 --- /dev/null +++ b/addons/payment_payumoney/static/src/img/payumoney_icon.png diff --git a/addons/payment_payumoney/views/payment_payumoney_templates.xml b/addons/payment_payumoney/views/payment_payumoney_templates.xml new file mode 100644 index 00000000..70ec052f --- /dev/null +++ b/addons/payment_payumoney/views/payment_payumoney_templates.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <template id="payumoney_form"> + <input type="hidden" name="data_set" t-att-data-action-url="tx_url" data-remove-me=""/> + <input type="hidden" name="key" t-att-value='key' /> + <input type="hidden" name="txnid" t-att-value='txnid' /> + <input type="hidden" name="amount" t-att-value='amount' /> + <input type="hidden" name="productinfo" t-att-value='productinfo' /> + <input type="hidden" name="firstname" t-att-value='firstname' /> + <input type="hidden" name="email" t-att-value='email' /> + <input type="hidden" name="phone" t-att-value='phone'/> + <input type="hidden" name="service_provider" t-att-value='service_provider' /> + <input type="hidden" name="hash" t-att-value='hash' /> + <input type="hidden" name="surl" t-att-value='surl' /> + <input type="hidden" name="furl" t-att-value='furl' /> + <input type="hidden" name="curl" t-att-value='curl' /> + <input type="hidden" name="udf1" t-att-value='udf1'/> + </template> +</odoo> diff --git a/addons/payment_payumoney/views/payment_views.xml b/addons/payment_payumoney/views/payment_views.xml new file mode 100644 index 00000000..ce2a72d1 --- /dev/null +++ b/addons/payment_payumoney/views/payment_views.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="payment_acquirer_form_payumoney" model="ir.ui.view"> + <field name="name">payment.acquirer.form.inherit</field> + <field name="model">payment.acquirer</field> + <field name="inherit_id" ref="payment.acquirer_form"/> + <field name="arch" type="xml"> + <xpath expr='//group[@name="acquirer"]' position='inside'> + <group attrs="{'invisible': [('provider', '!=', 'payumoney')]}"> + <field name="payumoney_merchant_key" attrs="{'required':[ ('provider', '=', 'payumoney'), ('state', '!=', 'disabled')]}"/> + <field name="payumoney_merchant_salt" attrs="{'required':[ ('provider', '=', 'payumoney'), ('state', '!=', 'disabled')]}" password="True"/> + </group> + </xpath> + </field> + </record> +</odoo> |
