Начальное наполнение
This commit is contained in:
parent
a546a3e463
commit
a9dce67494
24
__init__.py
Normal file
24
__init__.py
Normal file
@ -0,0 +1,24 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import controllers
|
||||
from . import models
|
||||
|
||||
from odoo.exceptions import UserError
|
||||
from odoo.tools import config
|
||||
|
||||
from odoo.addons.payment import setup_provider, reset_payment_provider
|
||||
|
||||
|
||||
def pre_init_hook(env):
|
||||
if not any(config.get(key) for key in ('init', 'update')):
|
||||
raise UserError(
|
||||
"This module is deprecated and cannot be installed. "
|
||||
"Consider installing the Payment Provider: Razorpay module instead.")
|
||||
|
||||
|
||||
def post_init_hook(env):
|
||||
setup_provider(env, 'payumoney')
|
||||
|
||||
|
||||
def uninstall_hook(env):
|
||||
reset_payment_provider(env, 'payumoney')
|
20
__manifest__.py
Normal file
20
__manifest__.py
Normal file
@ -0,0 +1,20 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
{
|
||||
'name': 'Payment Provider: PayUmoney',
|
||||
'version': '2.0',
|
||||
'category': 'Accounting/Payment Providers',
|
||||
'sequence': 350,
|
||||
'summary': "This module is deprecated.",
|
||||
'depends': ['payment'],
|
||||
'data': [
|
||||
'views/payment_payumoney_templates.xml',
|
||||
'views/payment_provider_views.xml',
|
||||
|
||||
'data/payment_provider_data.xml',
|
||||
],
|
||||
'pre_init_hook': 'pre_init_hook',
|
||||
'post_init_hook': 'post_init_hook',
|
||||
'uninstall_hook': 'uninstall_hook',
|
||||
'license': 'LGPL-3',
|
||||
}
|
12
const.py
Normal file
12
const.py
Normal file
@ -0,0 +1,12 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
# The codes of the payment methods to activate when PayU Money is activated.
|
||||
DEFAULT_PAYMENT_METHODS_CODES = [
|
||||
# Primary payment methods.
|
||||
'card',
|
||||
# Brand payment methods.
|
||||
'visa',
|
||||
'mastercard',
|
||||
'amex',
|
||||
'discover',
|
||||
]
|
3
controllers/__init__.py
Normal file
3
controllers/__init__.py
Normal file
@ -0,0 +1,3 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import main
|
71
controllers/main.py
Normal file
71
controllers/main.py
Normal file
@ -0,0 +1,71 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import hmac
|
||||
import logging
|
||||
import pprint
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo import http
|
||||
from odoo.http import request
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class PayUMoneyController(http.Controller):
|
||||
_return_url = '/payment/payumoney/return'
|
||||
|
||||
@http.route(
|
||||
_return_url, type='http', auth='public', methods=['GET', 'POST'], csrf=False,
|
||||
save_session=False
|
||||
)
|
||||
def payumoney_return_from_checkout(self, **data):
|
||||
""" Process the notification data sent by PayUmoney after redirection from checkout.
|
||||
|
||||
See https://developer.payumoney.com/redirect/.
|
||||
|
||||
The route is flagged with `save_session=False` to prevent Odoo from assigning a new session
|
||||
to the user if they are redirected to this route with a POST request. Indeed, as the session
|
||||
cookie is created without a `SameSite` attribute, some browsers that don't implement the
|
||||
recommended default `SameSite=Lax` behavior will not include the cookie in the redirection
|
||||
request from the payment provider to Odoo. As the redirection to the '/payment/status' page
|
||||
will satisfy any specification of the `SameSite` attribute, the session of the user will be
|
||||
retrieved and with it the transaction which will be immediately post-processed.
|
||||
|
||||
:param dict data: The notification data
|
||||
"""
|
||||
_logger.info("handling redirection from PayU money with data:\n%s", pprint.pformat(data))
|
||||
|
||||
# Check the integrity of the notification
|
||||
tx_sudo = request.env['payment.transaction'].sudo()._get_tx_from_notification_data(
|
||||
'payumoney', data
|
||||
)
|
||||
self._verify_notification_signature(data, tx_sudo)
|
||||
|
||||
# Handle the notification data
|
||||
tx_sudo._handle_notification_data('payumoney', data)
|
||||
return request.redirect('/payment/status')
|
||||
|
||||
@staticmethod
|
||||
def _verify_notification_signature(notification_data, tx_sudo):
|
||||
""" Check that the received signature matches the expected one.
|
||||
|
||||
:param dict notification_data: The notification data
|
||||
:param recordset tx_sudo: The sudoed transaction referenced by the notification data, as a
|
||||
`payment.transaction` record
|
||||
:return: None
|
||||
:raise: :class:`werkzeug.exceptions.Forbidden` if the signatures don't match
|
||||
"""
|
||||
# Retrieve the received signature from the data
|
||||
received_signature = notification_data.get('hash')
|
||||
if not received_signature:
|
||||
_logger.warning("received notification with missing signature")
|
||||
raise Forbidden()
|
||||
|
||||
# Compare the received signature with the expected signature computed from the data
|
||||
expected_signature = tx_sudo.provider_id._payumoney_generate_sign(
|
||||
notification_data, incoming=True
|
||||
)
|
||||
if not hmac.compare_digest(received_signature, expected_signature):
|
||||
_logger.warning("received notification with invalid signature")
|
||||
raise Forbidden()
|
4
data/neutralize.sql
Normal file
4
data/neutralize.sql
Normal file
@ -0,0 +1,4 @@
|
||||
-- disable payumoney payment provider
|
||||
UPDATE payment_provider
|
||||
SET payumoney_merchant_key = NULL,
|
||||
payumoney_merchant_salt = NULL;
|
23
data/payment_provider_data.xml
Normal file
23
data/payment_provider_data.xml
Normal file
@ -0,0 +1,23 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo noupdate="1">
|
||||
|
||||
<record id="payment_provider_payumoney" model="payment.provider">
|
||||
<field name="name">PayUmoney</field>
|
||||
<field name="image_128"
|
||||
type="base64"
|
||||
file="payment_payumoney/static/description/icon.png"/>
|
||||
<field name="module_id" ref="base.module_payment_payumoney"/>
|
||||
<!-- See https://www.payumoney.com/selfcare.html?userType=seller
|
||||
> Banks & Cards > What options do you have in the Credit Card payment? -->
|
||||
<field name="payment_method_ids"
|
||||
eval="[(6, 0, [
|
||||
ref('payment.payment_method_card'),
|
||||
ref('payment.payment_method_netbanking'),
|
||||
ref('payment.payment_method_emi'),
|
||||
ref('payment.payment_method_upi'),
|
||||
])]"/>
|
||||
<field name="code">payumoney</field>
|
||||
<field name="redirect_form_view_id" ref="redirect_form"/>
|
||||
</record>
|
||||
|
||||
</odoo>
|
80
i18n/af.po
Normal file
80
i18n/af.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/am.po
Normal file
80
i18n/am.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/ar.po
Normal file
113
i18n/ar.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Malaz Abuidris <msea@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Malaz Abuidris <msea@odoo.com>, 2023\n"
|
||||
"Language-Team: Arabic (https://app.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "رمز "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "معرف التاجر"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Merchant Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "لم يتم العثور على معاملة تطابق المرجع %s. "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "مزود الدفع "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "معاملة السداد"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "تم استلام البيانات دون مرجع (%s) "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "المفتاح مُستخدم فقط لتعريف الحساب مع PayU money "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "حدث خطأ أثناء الدفع مع الكود %s "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "الكود التقني لمزود الدفع هذا. "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"لقد تم إيقاف مزود الدفع.\n"
|
||||
" جرب تعطيله والانتقال إلى <strong>Razorpay</strong>. "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "تم التصريح بالدفع. "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "لقد تم إلغاء الدفع. "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "لقد تمت معالجة الدفع بنجاح ولكن بانتظار الموافقة. "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "لقد تمت معالجة الدفع بنجاح. "
|
80
i18n/az.po
Normal file
80
i18n/az.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:22+0000\n"
|
||||
"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
112
i18n/bg.po
Normal file
112
i18n/bg.po
Normal file
@ -0,0 +1,112 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# aleksandar ivanov, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Turhan Aydin <taydin@unionproject.eu>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Turhan Aydin <taydin@unionproject.eu>, 2024\n"
|
||||
"Language-Team: Bulgarian (https://app.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Търговски ключ"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Защита на търговец"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не е открита транзакция, съответстваща с референция %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Доставчик на разплащания"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платежна транзакция"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Плащането Ви е упълномощено."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
83
i18n/bs.po
Normal file
83
i18n/bs.po
Normal file
@ -0,0 +1,83 @@
|
||||
# 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: 2022-02-11 14:33+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"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Sticaoc plaćanja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Provajder"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
120
i18n/ca.po
Normal file
120
i18n/ca.po
Normal file
@ -0,0 +1,120 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2023
|
||||
# Ivan Espinola, 2023
|
||||
# Quim - eccit <quim@eccit.com>, 2023
|
||||
# CristianCruzParra, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Guspy12, 2023
|
||||
# marcescu, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: marcescu, 2023\n"
|
||||
"Language-Team: Catalan (https://app.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Clau del Comerciant"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Sal del Comerciant"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No s'ha trobat cap transacció que coincideixi amb la referència %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveïdor de pagament"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacció de pagament"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
"La clau utilitzada únicament per identificar el compte amb els diners de "
|
||||
"PayU"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "El pagament ha trobat un error amb el codi %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El codi tècnic d'aquest proveïdor de pagaments."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "El seu pagament s'ha autoritzat."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "El seu pagament ha estat cancel·lat."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"El vostre pagament s'ha processat correctament, però s'està esperant "
|
||||
"l'aprovació."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
112
i18n/cs.po
Normal file
112
i18n/cs.po
Normal file
@ -0,0 +1,112 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Ivana Bartonkova, 2023
|
||||
# Wil Odoo, 2023
|
||||
# Jakub Smolka, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jakub Smolka, 2024\n"
|
||||
"Language-Team: Czech (https://app.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nebyla nalezena žádná transakce odpovídající odkazu %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Poskytovatel platby"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platební transakce"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Vaše platba byla autorizována"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Vaše platba byla zrušena."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Vaše platba proběhla úspěšně, ale čeká na schválení."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Vaše platba proběhla úspěšně."
|
112
i18n/da.po
Normal file
112
i18n/da.po
Normal file
@ -0,0 +1,112 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# lhmflexerp <lhm@flexerp.dk>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Sanne Kristensen <sanne@vkdata.dk>, 2024\n"
|
||||
"Language-Team: Danish (https://app.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Merchant nummer"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Forhandler Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalingsudbyder"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaktion"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Din betaling er blevet godkendt."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Din betaling er blevet annulleret."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Din betaling er behandlet, men venter på godkendelse."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Din betaling er blevet behandlet."
|
117
i18n/de.po
Normal file
117
i18n/de.po
Normal file
@ -0,0 +1,117 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: German (https://app.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Händlerschlüssel"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Händler Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Keine Transaktion gefunden, die der Referenz %s entspricht."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Zahlungsanbieter"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Zahlungstransaktion"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Erhaltene Daten mit fehlender Referenz (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
"Der Schlüssel, der ausschließlich zur Identifizierung des Kontos bei PayU "
|
||||
"money verwendet wird"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Bei der Zahlung ist ein Fehler aufgetreten mit dem Code %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Der technische Code dieses Zahlungsanbieters."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Dieser Anbieter ist veraltet.\n"
|
||||
" Ziehen Sie in Erwägung, diesen zu deaktivieren und zu <strong>Razorpay</strong> zu wechseln."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Ihre Zahlung wurde genehmigt."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Ihre Zahlung wurde storniert."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Ihre Zahlung wurde erfolgreich verarbeitet, wartet aber noch auf die "
|
||||
"Freigabe."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Ihre Zahlung wurde erfolgreich verarbeitet."
|
84
i18n/el.po
Normal file
84
i18n/el.po
Normal file
@ -0,0 +1,84 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2018-09-18 09:49+0000\n"
|
||||
"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Κλειδί Εμπόρου"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Salt Εμπόρου"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Αποδέκτης Πληρωμής"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Συναλλαγή Πληρωμής"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Πάροχος"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
115
i18n/es.po
Normal file
115
i18n/es.po
Normal file
@ -0,0 +1,115 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Larissa Manderfeld, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Larissa Manderfeld, 2023\n"
|
||||
"Language-Team: Spanish (https://app.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Clave del comerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Merchant Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
"No se ha encontrado ninguna transacción que coincida con la referencia %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Datos recibidos con referencia faltante (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "La clave utilizada únicamente para identificar la cuenta con PayU"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "El pago tuvo un error con el código %s "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El código técnico de este proveedor de pagos."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Este es un proveedor obsoleto.\n"
|
||||
" Considere deshabilitarlo y cambiar a <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Se ha autorizado tu pago."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Tu pago ha sido cancelado."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Tu pago ha sido procesado con éxito pero está en espera de tu aprobación."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Su pago ha sido procesado con éxito."
|
113
i18n/es_419.po
Normal file
113
i18n/es_419.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Fernanda Alvarez, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2023\n"
|
||||
"Language-Team: Spanish (Latin America) (https://app.transifex.com/odoo/teams/41243/es_419/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_419\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Clave de comerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Cadena de 32 caracteres de comerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No se encontró ninguna transacción que coincida con la referencia %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUMoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Proveedor de pago"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transacción de pago"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Se recibieron datos sin referencia (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "La clave que se utiliza solo para identificar la cuenta con PayUMoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "El pago tuvo un error con el código %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "El código técnico de este proveedor de pagos."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Este es un proveedor obsoleto.\n"
|
||||
" Considere deshabilitarlo y cambiar a <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Se autorizó su pago."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Se canceló su pago."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Su pago se procesó con éxito pero está en espera de aprobación."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Su pago se proceso con éxito."
|
80
i18n/es_CL.po
Normal file
80
i18n/es_CL.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/es_CO.po
Normal file
80
i18n/es_CO.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/es_CR.po
Normal file
80
i18n/es_CR.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/es_PE.po
Normal file
80
i18n/es_PE.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/es_VE.po
Normal file
80
i18n/es_VE.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
115
i18n/et.po
Normal file
115
i18n/et.po
Normal file
@ -0,0 +1,115 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Aavastik <martin@avalah.ee>, 2023
|
||||
# Leaanika Randmets, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Triine Aavik <triine@avalah.ee>, 2023
|
||||
# Marek Pontus, 2023
|
||||
# Anna, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anna, 2023\n"
|
||||
"Language-Team: Estonian (https://app.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kood"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Makseteenuse pakkuja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksetehing"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Antud makseteenuse pakkuja tehniline kood."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Teie makse on autoriseeritud"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Teie makse on tühistatud."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Teie makse on edukalt töödeldud, kuid ootab kinnitamist."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Teie makse on edukalt töödeldud. "
|
80
i18n/eu.po
Normal file
80
i18n/eu.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/fa.po
Normal file
113
i18n/fa.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# odooers ir, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Hanna Kheradroosta, 2023\n"
|
||||
"Language-Team: Persian (https://app.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "کد"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "سرویس دهنده پرداخت"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "تراکنش پرداخت"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "این پرداخت مجاز است."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "پرداخت شما لغو شده است."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "پرداخت شما با موفقیت انجام شد اما در انتظار تایید است."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
114
i18n/fi.po
Normal file
114
i18n/fi.po
Normal file
@ -0,0 +1,114 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2023
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2023
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023\n"
|
||||
"Language-Team: Finnish (https://app.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Merchant Key"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Viitettä %s vastaavaa tapahtumaa ei löytynyt."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksupalveluntarjoaja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksutapahtuma"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Tämän maksupalveluntarjoajan tekninen koodi."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Maksusuorituksesi on hyväksytty."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Maksusi on peruutettu."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Maksusi on käsitelty onnistuneesti, mutta se odottaa hyväksyntää."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Maksusi on onnistuneesti käsitelty."
|
114
i18n/fr.po
Normal file
114
i18n/fr.po
Normal file
@ -0,0 +1,114 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: French (https://app.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Clé marchand"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Salage du vendeur"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Aucune transaction ne correspond à la référence %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fournisseur de paiement"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaction"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Données reçues avec référence manquante (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "La clé uniquement utilisée pour identifier le compte avec PayU money"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Le paiement a rencontré une erreur avec le code %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Le code technique de ce fournisseur de paiement."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Ce fournisseur est déprécié.\n"
|
||||
" Pensez à le désactiver et à passer à <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Votre paiement a été autorisé."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Votre paiement a été annulé."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Votre paiement a été traité avec succès, mais est en attente d'approbation."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Votre paiement a été traité avec succès."
|
80
i18n/gl.po
Normal file
80
i18n/gl.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/gu.po
Normal file
80
i18n/gu.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.4\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2018-08-02 09:56+0000\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/he.po
Normal file
113
i18n/he.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# ExcaliberX <excaliberx@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Ha Ketem <haketem@gmail.com>, 2023
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2023\n"
|
||||
"Language-Team: Hebrew (https://app.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "קוד"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "לא נמצאה עסקה המתאימה למספר האסמכתא %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "עסקת תשלום"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "התשלום נתקל בשגיאה עם הקוד %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "התשלום שלך אושר."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "התשלום שלך בוטל."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "התשלום שלך עבר עיבוד בהצלחה אך הוא ממתין לאישור."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
85
i18n/hr.po
Normal file
85
i18n/hr.po
Normal file
@ -0,0 +1,85 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2019
|
||||
# Tina Milas, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Last-Translator: Tina Milas, 2019\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Stjecatelj plaćanja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Davatelj "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/hu.po
Normal file
113
i18n/hu.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2023
|
||||
# gezza <geza.nagy@oregional.hu>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# sixsix six, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: sixsix six, 2023\n"
|
||||
"Language-Team: Hungarian (https://app.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fizetési szolgáltató"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Fizetési tranzakció"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "A fizetés jóváhagyásra került."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "A fizetés törlésre került."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
115
i18n/id.po
Normal file
115
i18n/id.po
Normal file
@ -0,0 +1,115 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Abe Manyo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Abe Manyo, 2023\n"
|
||||
"Language-Team: Indonesian (https://app.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Kunci Pedangan"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Merchant Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Tidak ada transaksi dengan referensi %s yang cocok."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Penyedia Pembayaran"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transaksi pembayaran"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Menerima datang tanpa referensi (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
"Key yang hanya digunakan untuk mengidentifikasi akun dengan PayU money"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Pembayaran menemukan error dengan kode %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kode teknis penyedia pembayaran ini."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Penyedia ini sudah didepresiasi.\n"
|
||||
" Pertimbangkan untuk menonaktifkan penyedia dan mulai gunakan <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Tagihan Anda telah disahkan."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Pembayaran Anda telah dibatalkan."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Pembayaran Anda sudah sukses diproses tapi sedang menunggu persetujuan."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Pembayaran Anda sukses diproses."
|
84
i18n/is.po
Normal file
84
i18n/is.po
Normal file
@ -0,0 +1,84 @@
|
||||
# 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: 2022-02-11 14:33+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"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Payment Acquirer"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Provider"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
116
i18n/it.po
Normal file
116
i18n/it.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Marianna Ciofani, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Marianna Ciofani, 2023\n"
|
||||
"Language-Team: Italian (https://app.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Chiave del commerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Salt del commerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nessuna transazione trovata corrispondente al riferimento %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Fornitore di pagamenti"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transazione di pagamento"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Dati ricevuti privi di riferimento (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
"La chiave utilizzata esclusivamente per identificare il conto con denaro "
|
||||
"PayU"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Il pagamento ha incontrato un errore con il codice %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Codice tecnico del fornitore di pagamenti."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Il fornitore è obsoleto.\n"
|
||||
" Disattivalo e passa a <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Il pagamento è stato autorizzato."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Il pagamento è stato annullato."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Il pagamento è stato elaborato con successo ma è in attesa di approvazione."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Il pagamento è stato elaborato con successo."
|
113
i18n/ja.po
Normal file
113
i18n/ja.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Junko Augias, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Junko Augias, 2023\n"
|
||||
"Language-Team: Japanese (https://app.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "マーチャントキー"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "マーチャントソルト"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "参照に一致する取引が見つかりません%s。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "決済プロバイダー"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "決済トランザクション"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "参照が欠落しているデータを受信しました(%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "PayU moneyのアカウントを識別するためのみに使用されるキー"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "支払でコード%sのエラーが発生しました。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "この決済プロバイダーのテクニカルコード。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"このプロバイダーは非推奨です。\n"
|
||||
" 無効にして <strong>Razorpay</strong>に移行することを検討して下さい。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "お支払いは承認されました。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "お支払いはキャンセルされました。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "お支払いは無事処理されましたが、承認待ちとなっています。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "お支払いは無事処理されました。"
|
83
i18n/km.po
Normal file
83
i18n/km.po
Normal file
@ -0,0 +1,83 @@
|
||||
# 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: 2022-02-11 14:33+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"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Merchant Key"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/ko.po
Normal file
113
i18n/ko.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Daye Jeong, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Daye Jeong, 2023\n"
|
||||
"Language-Team: Korean (https://app.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "코드"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "판매자 키"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "판매자 Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "%s 참조와 일치하는 거래 항목이 없습니다."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "결제대행업체"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "지불 거래"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "참조 (%s)가 누락된 데이터가 수신되었습니다 "
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "PayU 머니로 계정을 식별하는 데 사용되는 ID입니다"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "결제 중 코드 %s에서 오류가 발생했습니다"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "이 결제대행업체의 기술 코드입니다."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"이 공급업체는 더 이상 사용되지 않습니다.\n"
|
||||
" 해당 공급업체를 비활성화하고 <strong>Razorpay</strong>로 이동하십시오."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "귀하의 결제가 승인되었습니다."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "귀하의 결제가 취소되었습니다."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "결제가 성공적으로 처리되었지만 승인 대기 중입니다."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "성공적으로 결제가 완료되었습니다."
|
80
i18n/lb.po
Normal file
80
i18n/lb.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
|
||||
"Language: lb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
80
i18n/lo.po
Normal file
80
i18n/lo.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/lt.po
Normal file
113
i18n/lt.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2023
|
||||
# Silvija Butko <silvija.butko@gmail.com>, 2023
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jonas Zinkevicius <jozi@odoo.com>, 2023\n"
|
||||
"Language-Team: Lithuanian (https://app.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kodas"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Pardavėjo raktas"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Pardavėjo numeris (salt)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Mokėjimo operacija"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Jūsų mokėjimas buvo patvirtintas."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Jūsų mokėjimas buvo atšauktas."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
112
i18n/lv.po
Normal file
112
i18n/lv.po
Normal file
@ -0,0 +1,112 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2023
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Arnis Putniņš <arnis@allegro.lv>, 2023\n"
|
||||
"Language-Team: Latvian (https://app.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kods"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Maksājumu sniedzējs"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Maksājuma darījums"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
85
i18n/mn.po
Normal file
85
i18n/mn.po
Normal file
@ -0,0 +1,85 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2019
|
||||
# Martin Trigaux, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2019\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Худалдагчийн Түлхүүр"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Худалдагчийн Давс"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Төлбөрийн хэрэгсэл"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Төлбөрийн гүйлгээ"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Үйлчилгээ үзүүлэгч"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
84
i18n/nb.po
Normal file
84
i18n/nb.po
Normal file
@ -0,0 +1,84 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2019\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Merchant Key"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr "Betalingsløsning"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransaksjon"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr "Tilbyder"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
115
i18n/nl.po
Normal file
115
i18n/nl.po
Normal file
@ -0,0 +1,115 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Jolien De Paepe, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Jolien De Paepe, 2023\n"
|
||||
"Language-Team: Dutch (https://app.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Handelaars sleutel"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Handelaar salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Geen transactie gevonden die overeenkomt met referentie %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betaalprovider"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalingstransactie"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Gegevens ontvangen zonder referentie (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
"De sleutel die uitsluitend wordt gebruikt om de rekening met PayU-geld te "
|
||||
"identificeren"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Er is een fout opgetreden bij de betaling met de code %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "De technische code van deze betaalprovider."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Deze provider is verouderd.\n"
|
||||
" Overweeg deze provider uit te schakelen en over te stappen op <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Jouw betaling is toegestaan."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Jouw betaling is geannuleerd."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Je betaling is succesvol verwerkt maar wacht op goedkeuring."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Je betaling is succesvol verwerkt."
|
106
i18n/payment_payumoney.pot
Normal file
106
i18n/payment_payumoney.pot
Normal file
@ -0,0 +1,106 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 21:56+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
112
i18n/pl.po
Normal file
112
i18n/pl.po
Normal file
@ -0,0 +1,112 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Anita Kosobucka, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Anita Kosobucka, 2023\n"
|
||||
"Language-Team: Polish (https://app.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nie znaleziono transakcji pasującej do referencji %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Dostawca Płatności"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcja płatności"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Kod techniczny tego dostawcy usług płatniczych."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Twoja płatność została autoryzowana."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Twoja płatność została anulowana"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Twoja płatność została pomyślnie przetworzona, ale czeka na zatwierdzenie."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Twoja płatność została poprawnie przetworzona."
|
111
i18n/pt.po
Normal file
111
i18n/pt.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Manuela Silva <mmsrs@sky.com>, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Portuguese (https://app.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Código de Comerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação de Pagamento"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "O seu pagamento foi autorizado."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
114
i18n/pt_BR.po
Normal file
114
i18n/pt_BR.po
Normal file
@ -0,0 +1,114 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Maitê Dietze, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2023\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Chave do comerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Salt do comerciante"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Nenhuma transação encontrada com a referência %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provedor de serviços de pagamento"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transação de pagamento"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Dados recebidos com referência ausente (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "A chave usada exclusivamente para identificar a conta no PayULatam"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "O pagamento encontrou um erro com o código %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "O código técnico deste provedor de pagamento."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Esse provedor está obsoleto.\n"
|
||||
"Considere desativá-lo e mudar para <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Seu pagamento foi autorizado."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Seu pagamento foi cancelado."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Seu pagamento foi processado com sucesso, mas está aguardando aprovação."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Seu pagamento foi processado com sucesso."
|
80
i18n/ro.po
Normal file
80
i18n/ro.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 09:12+0000\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
113
i18n/ru.po
Normal file
113
i18n/ru.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# ILMIR <karamov@it-projects.info>, 2023
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2023
|
||||
# Wil Odoo, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2024\n"
|
||||
"Language-Team: Russian (https://app.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Ключ продавца"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Merchant Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не найдено ни одной транзакции, соответствующей ссылке %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Платежный провайдер"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Операция Оплаты"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технический код этого платежного провайдера."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Ваш платеж был подтвержден."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Ваш платеж был отменен."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Ваш платеж был успешно обработан, но ожидает одобрения."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Ваш платеж был успешно обработан."
|
111
i18n/sk.po
Normal file
111
i18n/sk.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Slovak (https://app.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Platobná transakcia"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Vaša platba bola autorizovaná."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Vaša platba bola úspešne spracovaná, ale čaká na schválenie."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
111
i18n/sl.po
Normal file
111
i18n/sl.po
Normal file
@ -0,0 +1,111 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tomaž Jug <tomaz@editor.si>, 2023\n"
|
||||
"Language-Team: Slovenian (https://app.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Oznaka"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ponudnik plačil"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Plačilna transakcija"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Vaše plačilo je bilo potrjeno."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
113
i18n/sr.po
Normal file
113
i18n/sr.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2023
|
||||
# コフスタジオ, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2024\n"
|
||||
"Language-Team: Serbian (https://app.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "No transaction found matching reference %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Provajder plaćanja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Transakcija plaćanja"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "The technical code of this payment provider."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Vaše plaćanje je autorizovano."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Your payment has been cancelled."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
80
i18n/sr@latin.po
Normal file
80
i18n/sr@latin.po
Normal file
@ -0,0 +1,80 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2022-02-11 14:33+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:account.payment.method,name:payment_payumoney.payment_method_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_acquirer__provider__payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_acquirer
|
||||
msgid "Payment Acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_account_payment_method
|
||||
msgid "Payment Methods"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "Provider"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__provider
|
||||
msgid "The Payment Service Provider to use with this acquirer"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_acquirer__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
114
i18n/sv.po
Normal file
114
i18n/sv.po
Normal file
@ -0,0 +1,114 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2023
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Lasse L, 2023
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2023\n"
|
||||
"Language-Team: Swedish (https://app.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Ingen transaktion hittades som matchar referensen %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Betalningsleverantör"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Betalningstransaktion"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Den tekniska koden för denna betalningsleverantör."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Din betalning har bekräftas."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Din betalning har avbrutits."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Din betalning har behandlats men väntar på godkännande."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
113
i18n/th.po
Normal file
113
i18n/th.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Rasareeyar Lappiam, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Rasareeyar Lappiam, 2024\n"
|
||||
"Language-Team: Thai (https://app.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "โค้ด"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "คีย์ผู้ขาย"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "ผู้ขาย Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "ไม่พบธุรกรรมที่ตรงกับการอ้างอิง %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "ผู้ให้บริการชำระเงิน"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "ธุรกรรมสำหรับการชำระเงิน"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "ข้อมูลที่ได้รับโดยไม่มีการอ้างอิง (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "คีย์ที่ใช้ในการระบุบัญชีด้วยเงิน PayU เท่านั้น"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "การชำระเงินพบข้อผิดพลาดกับรหัส %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "รหัสทางเทคนิคของผู้ให้บริการชำระเงินรายนี้"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"ผู้ให้บริการรายนี้เลิกใช้แล้ว\n"
|
||||
" ให้พิจารณาปิดการใช้งานและเปลี่ยนไปใช้ <strong>Razorpay</strong>"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "การชำระเงินของคุณได้รับการอนุมัติแล้ว"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "การชำระเงินของคุณถูกยกเลิก"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "การชำระเงินของคุณได้รับการประมวลผลเรียบร้อยแล้ว แต่กำลังรอการอนุมัติ"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "การชำระเงินของคุณได้รับการประมวลผลเรียบร้อยแล้ว"
|
116
i18n/tr.po
Normal file
116
i18n/tr.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Güven YILMAZ <guvenyilmaz@outlook.com.tr>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Umur Akın <umura@projetgrup.com>, 2023
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2023
|
||||
# Ediz Duman <neps1192@gmail.com>, 2023
|
||||
# Murat Durmuş <muratd@projetgrup.com>, 2023
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023\n"
|
||||
"Language-Team: Turkish (https://app.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Ticari Anahtar"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Merchant Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Referans %s eşleşen bir işlem bulunamadı."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Ödeme Sağlayıcı"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Ödeme İşlemi"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "Yalnızca hesabı PayU parasıyla tanımlamak için kullanılan anahtar"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Ödeme kod %s bir hatayla karşılaştı"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Bu ödeme sağlayıcısının teknik kodu."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Ödemeniz onaylandı."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Ödemeniz iptal edildi."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Ödemeniz başarıyla işleme koyuldu, ancak onay bekliyor."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
116
i18n/uk.po
Normal file
116
i18n/uk.po
Normal file
@ -0,0 +1,116 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2023\n"
|
||||
"Language-Team: Ukrainian (https://app.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Ключ Merchant"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Секретний ключ Merchant"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Не знайдено жодної транзакції, що відповідає референсу %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Провайдер платежу"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Платіжна операція"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Отримані дані з відсутнім референсом (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr ""
|
||||
"Ключ, який використовується виключно для ідентифікації рахунку з грошима "
|
||||
"PayU"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Під час платежу сталася помилка з кодом %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Технічний код цього провайдера платежу."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Цей провайдер не обслуговується.\n"
|
||||
" Ви можете вимкнути його та перейти на <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Вашу оплату було авторизовано."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Ваш платіж скасовано."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Ваш платіж успішно оброблено, але очікує на затвердження."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr ""
|
113
i18n/vi.po
Normal file
113
i18n/vi.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Thi Huong Nguyen, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Thi Huong Nguyen, 2023\n"
|
||||
"Language-Team: Vietnamese (https://app.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "Mã"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "Mã khoá người bán"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "Merchant Salt"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "Không tìm thấy giao dịch nào khớp với mã %s."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "Nhà cung cấp dịch vụ thanh toán"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "Giao dịch thanh toán"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "Dữ liệu đã nhận bị thiếu mã (%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "Mã khoá chỉ được sử dụng để xác định tài khoản với PayUmoney."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "Thanh toán gặp lỗi với mã %s"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "Mã kỹ thuật của nhà cung cấp dịch vụ thanh toán này."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"Nhà cung cấp này đã bị ngừng sử dụng.\n"
|
||||
" Hãy cân nhắc vô hiệu hoá nhà cung cấp đó và chuyển sang <strong>Razorpay</strong>."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "Thanh toán của bạn đã được uỷ quyền."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "Thanh toán của bạn đã bị hủy."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "Thanh toán của bạn đã được xử lý thành công nhưng đang chờ phê duyệt."
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "Thanh toán của bạn đã được xử lý thành công."
|
113
i18n/zh_CN.po
Normal file
113
i18n/zh_CN.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2023\n"
|
||||
"Language-Team: Chinese (China) (https://app.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "代码"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "商家密钥"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "商家盐"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "没有发现与参考文献%s相匹配的交易。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "付款交易"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "收到的数据缺少参考编号(%s)。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "用于识别PayU资金账户的唯一密钥"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "付款遇到代码为 %s 的错误"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "该支付提供商的技术代码。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"该提供商已过时。\n"
|
||||
" 请考虑禁用,并转用<strong>Razorpay</strong>。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "支付已获授权。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "您的支付已被取消。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "您的支付已经成功处理,但正在等待批准。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "您的付款已成功处理。"
|
113
i18n/zh_TW.po
Normal file
113
i18n/zh_TW.po
Normal file
@ -0,0 +1,113 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * payment_payumoney
|
||||
#
|
||||
# Translators:
|
||||
# Wil Odoo, 2023
|
||||
# Tony Ng, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 17.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-10-26 21:56+0000\n"
|
||||
"PO-Revision-Date: 2023-10-26 23:09+0000\n"
|
||||
"Last-Translator: Tony Ng, 2024\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__code
|
||||
msgid "Code"
|
||||
msgstr "程式碼"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "Merchant Key"
|
||||
msgstr "商家密鑰"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,field_description:payment_payumoney.field_payment_provider__payumoney_merchant_salt
|
||||
msgid "Merchant Salt"
|
||||
msgstr "商家鹽"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "No transaction found matching reference %s."
|
||||
msgstr "沒有找到匹配參考 %s 的交易。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields.selection,name:payment_payumoney.selection__payment_provider__code__payumoney
|
||||
#: model:payment.provider,name:payment_payumoney.payment_provider_payumoney
|
||||
msgid "PayUmoney"
|
||||
msgstr "PayUmoney"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_provider
|
||||
msgid "Payment Provider"
|
||||
msgstr "支付提供商"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model,name:payment_payumoney.model_payment_transaction
|
||||
msgid "Payment Transaction"
|
||||
msgstr "付款交易"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "Received data with missing reference (%s)"
|
||||
msgstr "收到的數據缺漏參考編號(%s)"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__payumoney_merchant_key
|
||||
msgid "The key solely used to identify the account with PayU money"
|
||||
msgstr "只用於向 PayU money 識別該帳戶的密鑰"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#. odoo-python
|
||||
#: code:addons/payment_payumoney/models/payment_transaction.py:0
|
||||
#, python-format
|
||||
msgid "The payment encountered an error with code %s"
|
||||
msgstr "付款遇到了一個錯誤,代碼為 %s。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model:ir.model.fields,help:payment_payumoney.field_payment_provider__code
|
||||
msgid "The technical code of this payment provider."
|
||||
msgstr "此付款服務商的技術代碼。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:ir.ui.view,arch_db:payment_payumoney.payment_provider_form
|
||||
msgid ""
|
||||
"This provider is deprecated.\n"
|
||||
" Consider disabling it and moving to <strong>Razorpay</strong>."
|
||||
msgstr ""
|
||||
"此服務商已被棄用。\n"
|
||||
" 請考慮將它設為停用,並轉用 <strong>Razorpay</strong>。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,auth_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been authorized."
|
||||
msgstr "您的付款已獲授權。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,cancel_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been cancelled."
|
||||
msgstr "您的付款已被取消。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,pending_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid ""
|
||||
"Your payment has been successfully processed but is waiting for approval."
|
||||
msgstr "您的付款已成功處理,但正在等待批准。"
|
||||
|
||||
#. module: payment_payumoney
|
||||
#: model_terms:payment.provider,done_msg:payment_payumoney.payment_provider_payumoney
|
||||
msgid "Your payment has been successfully processed."
|
||||
msgstr "你的付款已成功處理。"
|
4
models/__init__.py
Normal file
4
models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import payment_provider
|
||||
from . import payment_transaction
|
58
models/payment_provider.py
Normal file
58
models/payment_provider.py
Normal file
@ -0,0 +1,58 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import hashlib
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
from odoo.addons.payment_payulatam.const import DEFAULT_PAYMENT_METHODS_CODES
|
||||
|
||||
|
||||
class PaymentProvider(models.Model):
|
||||
_inherit = 'payment.provider'
|
||||
|
||||
code = fields.Selection(
|
||||
selection_add=[('payumoney', "PayUmoney")], ondelete={'payumoney': 'set default'})
|
||||
payumoney_merchant_key = fields.Char(
|
||||
string="Merchant Key", help="The key solely used to identify the account with PayU money",
|
||||
required_if_provider='payumoney')
|
||||
payumoney_merchant_salt = fields.Char(
|
||||
string="Merchant Salt", required_if_provider='payumoney', groups='base.group_system')
|
||||
|
||||
def _get_supported_currencies(self):
|
||||
""" Override of `payment` to return INR as the only supported currency. """
|
||||
supported_currencies = super()._get_supported_currencies()
|
||||
if self.code == 'payumoney':
|
||||
supported_currencies = supported_currencies.filtered(lambda c: c.name == 'INR')
|
||||
return supported_currencies
|
||||
|
||||
def _payumoney_generate_sign(self, values, incoming=True):
|
||||
""" Generate the shasign for incoming or outgoing communications.
|
||||
|
||||
:param dict values: The values used to generate the signature
|
||||
:param bool incoming: Whether the signature must be generated for an incoming (PayUmoney to
|
||||
Odoo) or outgoing (Odoo to PayUMoney) communication.
|
||||
:return: The shasign
|
||||
:rtype: str
|
||||
"""
|
||||
sign_values = {
|
||||
**values,
|
||||
'key': self.payumoney_merchant_key,
|
||||
'salt': self.payumoney_merchant_salt,
|
||||
}
|
||||
if incoming:
|
||||
keys = 'salt|status||||||udf5|udf4|udf3|udf2|udf1|email|firstname|productinfo|amount|' \
|
||||
'txnid|key'
|
||||
sign = '|'.join(f'{sign_values.get(k) or ""}' for k in keys.split('|'))
|
||||
else: # outgoing
|
||||
keys = 'key|txnid|amount|productinfo|firstname|email|udf1|udf2|udf3|udf4|udf5||||||salt'
|
||||
sign = '|'.join(f'{sign_values.get(k) or ""}' for k in keys.split('|'))
|
||||
return hashlib.sha512(sign.encode('utf-8')).hexdigest()
|
||||
|
||||
#=== BUSINESS METHODS ===#
|
||||
|
||||
def _get_default_payment_method_codes(self):
|
||||
""" Override of `payment` to return the default payment method codes. """
|
||||
default_codes = super()._get_default_payment_method_codes()
|
||||
if self.code != 'payumoney':
|
||||
return default_codes
|
||||
return DEFAULT_PAYMENT_METHODS_CODES
|
105
models/payment_transaction.py
Normal file
105
models/payment_transaction.py
Normal file
@ -0,0 +1,105 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from werkzeug import urls
|
||||
|
||||
from odoo import _, api, models
|
||||
from odoo.exceptions import ValidationError
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment_payumoney.controllers.main import PayUMoneyController
|
||||
|
||||
|
||||
class PaymentTransaction(models.Model):
|
||||
_inherit = 'payment.transaction'
|
||||
|
||||
def _get_specific_rendering_values(self, processing_values):
|
||||
""" Override of payment to return Payumoney-specific rendering values.
|
||||
|
||||
Note: self.ensure_one() from `_get_processing_values`
|
||||
|
||||
:param dict processing_values: The generic and specific processing values of the transaction
|
||||
:return: The dict of provider-specific processing values
|
||||
:rtype: dict
|
||||
"""
|
||||
res = super()._get_specific_rendering_values(processing_values)
|
||||
if self.provider_code != 'payumoney':
|
||||
return res
|
||||
|
||||
first_name, last_name = payment_utils.split_partner_name(self.partner_id.name)
|
||||
api_url = 'https://secure.payu.in/_payment' if self.provider_id.state == 'enabled' \
|
||||
else 'https://sandboxsecure.payu.in/_payment'
|
||||
payumoney_values = {
|
||||
'key': self.provider_id.payumoney_merchant_key,
|
||||
'txnid': self.reference,
|
||||
'amount': self.amount,
|
||||
'productinfo': self.reference,
|
||||
'firstname': first_name,
|
||||
'lastname': last_name,
|
||||
'email': self.partner_email,
|
||||
'phone': self.partner_phone,
|
||||
'return_url': urls.url_join(self.get_base_url(), PayUMoneyController._return_url),
|
||||
'api_url': api_url,
|
||||
}
|
||||
payumoney_values['hash'] = self.provider_id._payumoney_generate_sign(
|
||||
payumoney_values, incoming=False,
|
||||
)
|
||||
return payumoney_values
|
||||
|
||||
def _get_tx_from_notification_data(self, provider_code, notification_data):
|
||||
""" Override of payment to find the transaction based on Payumoney data.
|
||||
|
||||
:param str provider_code: The code of the provider that handled the transaction
|
||||
:param dict notification_data: The notification data sent by the provider
|
||||
:return: The transaction if found
|
||||
:rtype: recordset of `payment.transaction`
|
||||
:raise: ValidationError if inconsistent data were received
|
||||
:raise: ValidationError if the data match no transaction
|
||||
"""
|
||||
tx = super()._get_tx_from_notification_data(provider_code, notification_data)
|
||||
if provider_code != 'payumoney' or len(tx) == 1:
|
||||
return tx
|
||||
|
||||
reference = notification_data.get('txnid')
|
||||
if not reference:
|
||||
raise ValidationError(
|
||||
"PayUmoney: " + _("Received data with missing reference (%s)", reference)
|
||||
)
|
||||
|
||||
tx = self.search([('reference', '=', reference), ('provider_code', '=', 'payumoney')])
|
||||
if not tx:
|
||||
raise ValidationError(
|
||||
"PayUmoney: " + _("No transaction found matching reference %s.", reference)
|
||||
)
|
||||
|
||||
return tx
|
||||
|
||||
def _process_notification_data(self, notification_data):
|
||||
""" Override of payment to process the transaction based on Payumoney data.
|
||||
|
||||
Note: self.ensure_one()
|
||||
|
||||
:param dict notification_data: The notification data sent by the provider
|
||||
:return: None
|
||||
"""
|
||||
super()._process_notification_data(notification_data)
|
||||
if self.provider_code != 'payumoney':
|
||||
return
|
||||
|
||||
# Update the provider reference.
|
||||
self.provider_reference = notification_data.get('payuMoneyId')
|
||||
|
||||
# Update the payment method
|
||||
payment_method_type = notification_data.get('bankcode', '')
|
||||
payment_method = self.env['payment.method']._get_from_code(payment_method_type)
|
||||
self.payment_method_id = payment_method or self.payment_method_id
|
||||
|
||||
# Update the payment state.
|
||||
status = notification_data.get('status')
|
||||
if status == 'success':
|
||||
self._set_done()
|
||||
else: # 'failure'
|
||||
# See https://www.payumoney.com/pdf/PayUMoney-Technical-Integration-Document.pdf
|
||||
error_code = notification_data.get('Error')
|
||||
self._set_error(
|
||||
"PayUmoney: " + _("The payment encountered an error with code %s", error_code)
|
||||
)
|
BIN
static/description/icon.png
Normal file
BIN
static/description/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 966 B |
1
static/description/icon.svg
Normal file
1
static/description/icon.svg
Normal file
@ -0,0 +1 @@
|
||||
<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><path d="m46.325 18.237-2.978-.001a.59.59 0 0 0-.589.59v.416h.207c1.345 0 1.845.222 1.845 1.45v1.744h1.513a.589.589 0 0 0 .589-.588v-3.021a.589.589 0 0 0-.587-.59Zm-16.253 4.69c-.138-.172-.398-.196-.658-.196h-.196c-.649 0-.903.2-1.047.825l-1.804 7.513c-.225.923-.541 1.092-1.083 1.092-.662 0-.928-.158-1.192-1.096l-2.043-7.513c-.17-.63-.419-.821-1.068-.821h-.174c-.262 0-.523.024-.657.2-.134.174-.089.436-.02.694l2.065 7.578c.387 1.45.848 2.651 2.568 2.651.32 0 .618-.045.865-.128-.522 1.644-1.053 2.37-2.618 2.53-.317.027-.524.072-.639.227-.12.16-.092.39-.05.595l.044.194c.093.45.252.728.756.728.053 0 .11-.003.17-.008 2.337-.153 3.59-1.414 4.322-4.352l2.5-10.02c.06-.258.096-.52-.041-.692ZM17.496 28.7v1.517c0 1.236-.458 1.952-2.796 1.952-1.545 0-2.296-.56-2.296-1.713 0-1.263.754-1.756 2.687-1.756h2.405ZM14.7 22.412c-1.275 0-2.074.16-2.377.22-.536.118-.76.265-.76.877v.174c0 .24.035.405.11.522.089.136.232.205.424.205.094 0 .203-.016.333-.048.306-.077 1.286-.236 2.357-.236 1.924 0 2.709.534 2.709 1.844v1.168h-2.427c-3.119 0-4.572 1.054-4.572 3.318 0 2.196 1.5 3.406 4.225 3.406 3.237 0 4.68-1.104 4.68-3.58V25.97c0-2.394-1.538-3.558-4.702-3.558Zm-6.115 1.452c0 1.803-.46 2.78-2.883 2.78h-3.73v-4.653c0-.645.24-.885.883-.885h2.847c1.826 0 2.883.452 2.883 2.758ZM5.702 19.24H2.486C.766 19.24 0 20.007 0 21.73v11.065c0 .665.213.879.877.879h.218c.664 0 .877-.214.877-.88V28.49h3.73c3.312 0 4.855-1.47 4.855-4.625 0-3.155-1.543-4.625-4.855-4.625Zm40.913-4.12h-1.502a.297.297 0 0 1-.297-.298v-1.524c0-.164.134-.297.297-.297h1.502c.164 0 .297.134.297.298v1.524a.297.297 0 0 1-.297.297Zm2.947 3.12H47.35a.437.437 0 0 1-.436-.439v-2.244c0-.241.196-.437.437-.437h2.212c.241 0 .437.197.437.438v2.244a.437.437 0 0 1-.438.438Zm-6.217 4.197a.588.588 0 0 1-.587-.59v-2.604h-.217c-1.344 0-1.844.222-1.844 1.45v2.872l-.001.018v.63l-.002.064v4.013c0 .49-.094.88-.289 1.184-.366.566-1.092.823-2.254.825-1.16-.002-1.886-.259-2.253-.825-.195-.303-.29-.693-.29-1.184v-4.708l-.002-.017v-2.872c0-1.228-.5-1.45-1.845-1.45h-.423c-1.345 0-1.845.222-1.845 1.45v7.597c0 1.222.275 2.257.807 3.091 1.026 1.617 3.014 2.478 5.841 2.478h.02c2.828 0 4.816-.861 5.842-2.478.532-.834.807-1.869.807-3.09v-5.854h-1.465Z" fill="#62CAC3"/><path d="M43.105 11h.972V7.818h1.108V7H42v.818h1.105V11Zm2.775 0h.858V8.453h.053L47.663 11h.555l.871-2.547h.056V11H50V7h-1.108l-.924 2.714h-.05L46.99 7h-1.11v4Z" fill="#D1D5DB"/></svg>
|
After Width: | Height: | Size: 2.4 KiB |
4
tests/__init__.py
Normal file
4
tests/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_payumoney
|
66
tests/common.py
Normal file
66
tests/common.py
Normal file
@ -0,0 +1,66 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.payment.tests.common import PaymentCommon
|
||||
|
||||
|
||||
class PayumoneyCommon(PaymentCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super().setUpClass()
|
||||
|
||||
cls.payumoney = cls._prepare_provider('payumoney', update_values={
|
||||
'payumoney_merchant_key': 'dummy',
|
||||
'payumoney_merchant_salt': 'dummy',
|
||||
})
|
||||
|
||||
# Override default values
|
||||
cls.provider = cls.payumoney
|
||||
cls.currency = cls._prepare_currency('INR')
|
||||
|
||||
cls.notification_data = {
|
||||
'PG_TYPE': 'HDFCPG',
|
||||
'addedon': '2022-01-19 21:36:05',
|
||||
'address1': '',
|
||||
'address2': '',
|
||||
'amount': '100.00',
|
||||
'amount_split': '{"PAYU":"100.00"}',
|
||||
'bank_ref_num': '429387287430473',
|
||||
'bankcode': 'VISA',
|
||||
'cardhash': 'This field is no longer supported in postback params.',
|
||||
'cardnum': '401200XXXXXX1112',
|
||||
'city': '',
|
||||
'country': '',
|
||||
'discount': '0.00',
|
||||
'email': 'admin@yourcompany.example.com',
|
||||
'encryptedPaymentId': 'A45B5A1E189A9FC89C0E150F2E6EF074',
|
||||
'error': 'E000',
|
||||
'error_Message': 'No Error',
|
||||
'field1': '021268586345',
|
||||
'field2': '315728',
|
||||
'field3': '429387287430473',
|
||||
'field4': 'ejRWR1J6RFRQWnd1c1BXb2FTbVk=',
|
||||
'field5': '05',
|
||||
'field6': '',
|
||||
'field7': 'AUTHPOSITIVE',
|
||||
'field8': '',
|
||||
'field9': '',
|
||||
'firstname': 'Mitchell',
|
||||
'giftCardIssued': 'true',
|
||||
'hash': '6618df5167d46785efeb0ef392d9a150de0c6e56699eb67898ebc690202fa5fe53cee1290b2ca2dfdc307e5bff2518e30dfa680923b538d7ab7f1624a4a9baa5',
|
||||
'isConsentPayment': '0',
|
||||
'key': 'GuWsdB4T',
|
||||
'lastname': '',
|
||||
'mihpayid': '9084338127',
|
||||
'mode': 'CC',
|
||||
'name_on_card': 'ABC DEF',
|
||||
'net_amount_debit': '100',
|
||||
'payuMoneyId': '251115271',
|
||||
'phone': '5555555555',
|
||||
'productinfo': 'anv-test-20220118140529',
|
||||
'state': '',
|
||||
'status': 'success',
|
||||
'txnid': cls.reference,
|
||||
'unmappedstatus': 'captured',
|
||||
'zipcode': '',
|
||||
}
|
83
tests/test_payumoney.py
Normal file
83
tests/test_payumoney.py
Normal file
@ -0,0 +1,83 @@
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from werkzeug.exceptions import Forbidden
|
||||
|
||||
from odoo.tests import tagged
|
||||
from odoo.tools import mute_logger
|
||||
|
||||
from odoo.addons.payment import utils as payment_utils
|
||||
from odoo.addons.payment.tests.http_common import PaymentHttpCommon
|
||||
from odoo.addons.payment_payumoney.controllers.main import PayUMoneyController
|
||||
from odoo.addons.payment_payumoney.tests.common import PayumoneyCommon
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class PayUMoneyTest(PayumoneyCommon, PaymentHttpCommon):
|
||||
|
||||
def test_compatible_providers(self):
|
||||
providers = self.env['payment.provider']._get_compatible_providers(
|
||||
self.company.id, self.partner.id, self.amount, currency_id=self.currency.id
|
||||
)
|
||||
self.assertIn(self.payumoney, providers)
|
||||
|
||||
providers = self.env['payment.provider']._get_compatible_providers(
|
||||
self.company.id, self.partner.id, self.amount, currency_id=self.currency_euro.id
|
||||
)
|
||||
self.assertNotIn(self.payumoney, providers)
|
||||
|
||||
def test_redirect_form_values(self):
|
||||
tx = self._create_transaction(flow='redirect')
|
||||
with mute_logger('odoo.addons.payment.models.payment_transaction'):
|
||||
processing_values = tx._get_processing_values()
|
||||
|
||||
form_info = self._extract_values_from_html_form(processing_values['redirect_form_html'])
|
||||
first_name, last_name = payment_utils.split_partner_name(self.partner.name)
|
||||
return_url = self._build_url(PayUMoneyController._return_url)
|
||||
expected_values = {
|
||||
'key': self.payumoney.payumoney_merchant_key,
|
||||
'txnid': self.reference,
|
||||
'amount': str(self.amount),
|
||||
'productinfo': self.reference,
|
||||
'firstname': first_name,
|
||||
'lastname': last_name,
|
||||
'email': self.partner.email,
|
||||
'phone': self.partner.phone,
|
||||
'surl': return_url,
|
||||
'furl': return_url,
|
||||
'service_provider': 'payu_paisa',
|
||||
}
|
||||
expected_values['hash'] = self.payumoney._payumoney_generate_sign(
|
||||
expected_values, incoming=False,
|
||||
)
|
||||
self.assertEqual(form_info['action'],
|
||||
'https://sandboxsecure.payu.in/_payment')
|
||||
self.assertDictEqual(form_info['inputs'], expected_values,
|
||||
"PayUMoney: invalid inputs specified in the redirect form.")
|
||||
|
||||
def test_accept_notification_with_valid_signature(self):
|
||||
""" Test the verification of a notification with a valid signature. """
|
||||
tx = self._create_transaction('redirect')
|
||||
self._assert_does_not_raise(
|
||||
Forbidden,
|
||||
PayUMoneyController._verify_notification_signature,
|
||||
self.notification_data,
|
||||
tx,
|
||||
)
|
||||
|
||||
@mute_logger('odoo.addons.payment_payumoney.controllers.main')
|
||||
def test_reject_notification_with_missing_signature(self):
|
||||
""" Test the verification of a notification with a missing signature. """
|
||||
tx = self._create_transaction('redirect')
|
||||
payload = dict(self.notification_data, hash=None)
|
||||
self.assertRaises(
|
||||
Forbidden, PayUMoneyController._verify_notification_signature, payload, tx
|
||||
)
|
||||
|
||||
@mute_logger('odoo.addons.payment_payumoney.controllers.main')
|
||||
def test_reject_notification_with_invalid_signature(self):
|
||||
""" Test the verification of a notification with an invalid signature. """
|
||||
tx = self._create_transaction('redirect')
|
||||
payload = dict(self.notification_data, hash='dummy')
|
||||
self.assertRaises(
|
||||
Forbidden, PayUMoneyController._verify_notification_signature, payload, tx
|
||||
)
|
21
views/payment_payumoney_templates.xml
Normal file
21
views/payment_payumoney_templates.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<template id="redirect_form">
|
||||
<form t-att-action="api_url" method="post">
|
||||
<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="lastname" t-att-value="lastname"/>
|
||||
<input type="hidden" name="email" t-att-value="email"/>
|
||||
<input type="hidden" name="phone" t-att-value="phone"/>
|
||||
<input type="hidden" name="surl" t-att-value="return_url"/>
|
||||
<input type="hidden" name="furl" t-att-value="return_url"/>
|
||||
<input type="hidden" name="service_provider" value="payu_paisa"/>
|
||||
<input type="hidden" name="hash" t-att-value="hash"/>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
</odoo>
|
26
views/payment_provider_views.xml
Normal file
26
views/payment_provider_views.xml
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record id="payment_provider_form" model="ir.ui.view">
|
||||
<field name="name">PayUMoney Provider Form</field>
|
||||
<field name="model">payment.provider</field>
|
||||
<field name="inherit_id" ref="payment.payment_provider_form"/>
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//div[@id='provider_creation_warning']" position="after">
|
||||
<div class="alert alert-danger"
|
||||
role="alert"
|
||||
invisible="code != 'payumoney'">
|
||||
This provider is deprecated.
|
||||
Consider disabling it and moving to <strong>Razorpay</strong>.
|
||||
</div>
|
||||
</xpath>
|
||||
<group name="provider_credentials" position="inside">
|
||||
<group invisible="code != 'payumoney'">
|
||||
<field name="payumoney_merchant_key" required="code == 'payumoney' and state != 'disabled'"/>
|
||||
<field name="payumoney_merchant_salt" required="code == 'payumoney' and state != 'disabled'" password="True"/>
|
||||
</group>
|
||||
</group>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user