summaryrefslogtreecommitdiff
path: root/addons/payment_payulatam
diff options
context:
space:
mode:
Diffstat (limited to 'addons/payment_payulatam')
-rw-r--r--addons/payment_payulatam/__init__.py6
-rw-r--r--addons/payment_payulatam/__manifest__.py19
-rw-r--r--addons/payment_payulatam/controllers/__init__.py4
-rw-r--r--addons/payment_payulatam/controllers/main.py22
-rw-r--r--addons/payment_payulatam/data/payment_acquirer_data.xml10
-rw-r--r--addons/payment_payulatam/i18n/ar.po94
-rw-r--r--addons/payment_payulatam/i18n/bg.po95
-rw-r--r--addons/payment_payulatam/i18n/bn.po93
-rw-r--r--addons/payment_payulatam/i18n/ca.po96
-rw-r--r--addons/payment_payulatam/i18n/ckb.po93
-rw-r--r--addons/payment_payulatam/i18n/cs.po96
-rw-r--r--addons/payment_payulatam/i18n/da.po99
-rw-r--r--addons/payment_payulatam/i18n/de.po94
-rw-r--r--addons/payment_payulatam/i18n/el.po94
-rw-r--r--addons/payment_payulatam/i18n/eo.po89
-rw-r--r--addons/payment_payulatam/i18n/es.po100
-rw-r--r--addons/payment_payulatam/i18n/es_MX.po99
-rw-r--r--addons/payment_payulatam/i18n/et.po96
-rw-r--r--addons/payment_payulatam/i18n/eu.po95
-rw-r--r--addons/payment_payulatam/i18n/fa.po95
-rw-r--r--addons/payment_payulatam/i18n/fi.po96
-rw-r--r--addons/payment_payulatam/i18n/fr.po103
-rw-r--r--addons/payment_payulatam/i18n/he.po95
-rw-r--r--addons/payment_payulatam/i18n/hi.po89
-rw-r--r--addons/payment_payulatam/i18n/hr.po95
-rw-r--r--addons/payment_payulatam/i18n/hu.po95
-rw-r--r--addons/payment_payulatam/i18n/id.po95
-rw-r--r--addons/payment_payulatam/i18n/it.po95
-rw-r--r--addons/payment_payulatam/i18n/ja.po95
-rw-r--r--addons/payment_payulatam/i18n/ka.po94
-rw-r--r--addons/payment_payulatam/i18n/km.po94
-rw-r--r--addons/payment_payulatam/i18n/ko.po94
-rw-r--r--addons/payment_payulatam/i18n/lb.po71
-rw-r--r--addons/payment_payulatam/i18n/lt.po96
-rw-r--r--addons/payment_payulatam/i18n/lv.po89
-rw-r--r--addons/payment_payulatam/i18n/mn.po94
-rw-r--r--addons/payment_payulatam/i18n/nb.po94
-rw-r--r--addons/payment_payulatam/i18n/nl.po98
-rw-r--r--addons/payment_payulatam/i18n/payment_payulatam.pot89
-rw-r--r--addons/payment_payulatam/i18n/pl.po95
-rw-r--r--addons/payment_payulatam/i18n/pt.po95
-rw-r--r--addons/payment_payulatam/i18n/pt_BR.po97
-rw-r--r--addons/payment_payulatam/i18n/ro.po95
-rw-r--r--addons/payment_payulatam/i18n/ru.po96
-rw-r--r--addons/payment_payulatam/i18n/si.po89
-rw-r--r--addons/payment_payulatam/i18n/sk.po97
-rw-r--r--addons/payment_payulatam/i18n/sl.po95
-rw-r--r--addons/payment_payulatam/i18n/sv.po96
-rw-r--r--addons/payment_payulatam/i18n/th.po95
-rw-r--r--addons/payment_payulatam/i18n/tr.po101
-rw-r--r--addons/payment_payulatam/i18n/uk.po97
-rw-r--r--addons/payment_payulatam/i18n/ur.po89
-rw-r--r--addons/payment_payulatam/i18n/vi.po98
-rw-r--r--addons/payment_payulatam/i18n/zh_CN.po97
-rw-r--r--addons/payment_payulatam/i18n/zh_TW.po93
-rw-r--r--addons/payment_payulatam/models/__init__.py4
-rw-r--r--addons/payment_payulatam/models/payment.py145
-rw-r--r--addons/payment_payulatam/static/src/img/payulatam_icon.pngbin0 -> 47464 bytes
-rw-r--r--addons/payment_payulatam/tests/__init__.py4
-rw-r--r--addons/payment_payulatam/tests/test_payulatam.py154
-rw-r--r--addons/payment_payulatam/views/payment_payulatam_templates.xml20
-rw-r--r--addons/payment_payulatam/views/payment_views.xml17
62 files changed, 5129 insertions, 0 deletions
diff --git a/addons/payment_payulatam/__init__.py b/addons/payment_payulatam/__init__.py
new file mode 100644
index 00000000..e52ad6f8
--- /dev/null
+++ b/addons/payment_payulatam/__init__.py
@@ -0,0 +1,6 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import controllers
+from . import models
+from odoo.addons.payment.models.payment_acquirer import create_missing_journal_for_acquirers
diff --git a/addons/payment_payulatam/__manifest__.py b/addons/payment_payulatam/__manifest__.py
new file mode 100644
index 00000000..ff13f7d4
--- /dev/null
+++ b/addons/payment_payulatam/__manifest__.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+{
+ 'name': 'PayuLatam Payment Acquirer',
+ 'category': 'Accounting/Payment Acquirers',
+ 'sequence': 370,
+ 'summary': 'Payment Acquirer: PayuLatam Implementation',
+ 'description': """Payulatam payment acquirer""",
+ 'depends': ['payment'],
+ 'data': [
+ 'views/payment_views.xml',
+ 'views/payment_payulatam_templates.xml',
+ 'data/payment_acquirer_data.xml',
+ ],
+ 'application': True,
+ 'post_init_hook': 'create_missing_journal_for_acquirers',
+ 'license': 'LGPL-3',
+}
diff --git a/addons/payment_payulatam/controllers/__init__.py b/addons/payment_payulatam/controllers/__init__.py
new file mode 100644
index 00000000..5d4b25db
--- /dev/null
+++ b/addons/payment_payulatam/controllers/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import main
diff --git a/addons/payment_payulatam/controllers/main.py b/addons/payment_payulatam/controllers/main.py
new file mode 100644
index 00000000..6d567158
--- /dev/null
+++ b/addons/payment_payulatam/controllers/main.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+import logging
+import pprint
+import werkzeug
+
+from odoo import http
+from odoo.http import request
+
+_logger = logging.getLogger(__name__)
+
+
+class PayuLatamController(http.Controller):
+
+ @http.route('/payment/payulatam/response', type='http', auth='public', csrf=False)
+ def payulatam_response(self, **post):
+ """ PayUlatam."""
+ _logger.info('PayU Latam: entering form_feedback with post response data %s', pprint.pformat(post))
+ if post:
+ request.env['payment.transaction'].sudo().form_feedback(post, 'payulatam')
+ return werkzeug.utils.redirect('/payment/process')
diff --git a/addons/payment_payulatam/data/payment_acquirer_data.xml b/addons/payment_payulatam/data/payment_acquirer_data.xml
new file mode 100644
index 00000000..93d0468a
--- /dev/null
+++ b/addons/payment_payulatam/data/payment_acquirer_data.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <data noupdate="1">
+ <record id="payment.payment_acquirer_payulatam" model="payment.acquirer">
+ <field name="provider">payulatam</field>
+ <field name="company_id" ref="base.main_company"/>
+ <field name="view_template_id" ref="payulatam_form"/>
+ </record>
+ </data>
+</odoo>
diff --git a/addons/payment_payulatam/i18n/ar.po b/addons/payment_payulatam/i18n/ar.po
new file mode 100644
index 00000000..7f131e22
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ar.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Mustafa Rawi <mustafa@cubexco.com>, 2020
+# Osama Ahmaro <osamaahmaro@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n"
+"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ar\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "الاسم المعروض"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "المُعرف"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "آخر تعديل في"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "معالج السداد"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "معاملة السداد"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "المزود"
diff --git a/addons/payment_payulatam/i18n/bg.po b/addons/payment_payulatam/i18n/bg.po
new file mode 100644
index 00000000..6d26a747
--- /dev/null
+++ b/addons/payment_payulatam/i18n/bg.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Albena Mincheva <albena_vicheva@abv.bg>, 2020
+# Maria Boyadjieva <marabo2000@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n"
+"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bg\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Име за показване"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Последно променено на"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Обработчик на плащане"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Платежна транзакция"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Доставчик"
diff --git a/addons/payment_payulatam/i18n/bn.po b/addons/payment_payulatam/i18n/bn.po
new file mode 100644
index 00000000..70adab57
--- /dev/null
+++ b/addons/payment_payulatam/i18n/bn.po
@@ -0,0 +1,93 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Abu Zafar <azmikbal@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n"
+"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: bn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "প্রদর্শন নাম"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "আইডি "
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "সর্বশেষ সংশোধিত"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "পেমেন্ট অর্জিত"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "পেমেন্ট লেনদেন"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/ca.po b/addons/payment_payulatam/i18n/ca.po
new file mode 100644
index 00000000..d4032d25
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ca.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# RGB Consulting <odoo@rgbconsulting.com>, 2020
+# Quim - eccit <quim@eccit.com>, 2020
+# Josep Anton Belchi, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Josep Anton Belchi, 2021\n"
+"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ca\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nom mostrat"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Última modificació el "
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Mètode de pagament"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transacció de pagament"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Proveïdor"
diff --git a/addons/payment_payulatam/i18n/ckb.po b/addons/payment_payulatam/i18n/ckb.po
new file mode 100644
index 00000000..e0a65ef8
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ckb.po
@@ -0,0 +1,93 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n"
+"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ckb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "پیشاندانی ناو"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ناسنامە"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "دواین دەستکاری لە"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "پارەوەرگر"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/cs.po b/addons/payment_payulatam/i18n/cs.po
new file mode 100644
index 00000000..20828552
--- /dev/null
+++ b/addons/payment_payulatam/i18n/cs.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jan Horzinka <jan.horzinka@centrum.cz>, 2020
+# Michal Veselý <michal@veselyberanek.net>, 2020
+# trendspotter, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: trendspotter, 2021\n"
+"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: cs\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Zobrazované jméno"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Naposled změněno"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API Klíč"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam Account ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Platební brána"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Platební transakce"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Poskytovatel"
diff --git a/addons/payment_payulatam/i18n/da.po b/addons/payment_payulatam/i18n/da.po
new file mode 100644
index 00000000..dccf6099
--- /dev/null
+++ b/addons/payment_payulatam/i18n/da.po
@@ -0,0 +1,99 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Morten Schou <ms@msteknik.dk>, 2020
+# Jesper Carstensen <jc@danodoo.dk>, 2020
+# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020
+# Sanne Kristensen <sanne@vkdata.dk>, 2020
+# Mads Søndergaard, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Mads Søndergaard, 2020\n"
+"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: da\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Vis navn"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Sidst ændret den"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API Nægle"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam Konto ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "PayU Latam Forhandler ID"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam: Modtaget data for reference %s; flere ordre fundet"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam: Modtaget data for reference %s; ingen ordre fundet"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: Modtaget data med manglende reference (%s) eller transaktions ID"
+" (%s) eller signatur (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Betalingsindløser"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Betalingstransaktion"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Udbyder"
diff --git a/addons/payment_payulatam/i18n/de.po b/addons/payment_payulatam/i18n/de.po
new file mode 100644
index 00000000..8eddbeea
--- /dev/null
+++ b/addons/payment_payulatam/i18n/de.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Andreas Schmidt <schmigo@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Andreas Schmidt <schmigo@gmail.com>, 2021\n"
+"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: de\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Anzeigename"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Zuletzt geändert am"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Zahlungsanbieter"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Zahlungstransaktion"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Anbieter"
diff --git a/addons/payment_payulatam/i18n/el.po b/addons/payment_payulatam/i18n/el.po
new file mode 100644
index 00000000..a87dda43
--- /dev/null
+++ b/addons/payment_payulatam/i18n/el.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kostas Goutoudis <goutoudis@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Kostas Goutoudis <goutoudis@gmail.com>, 2020\n"
+"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: el\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Εμφάνιση Ονόματος"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "Κωδικός"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Τελευταία τροποποίηση στις"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Αποδέκτης Πληρωμής"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Συναλλαγή Πληρωμής"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Πάροχος"
diff --git a/addons/payment_payulatam/i18n/eo.po b/addons/payment_payulatam/i18n/eo.po
new file mode 100644
index 00000000..29c14764
--- /dev/null
+++ b/addons/payment_payulatam/i18n/eo.po
@@ -0,0 +1,89 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eo\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/es.po b/addons/payment_payulatam/i18n/es.po
new file mode 100644
index 00000000..159322b6
--- /dev/null
+++ b/addons/payment_payulatam/i18n/es.po
@@ -0,0 +1,100 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# John Guardado <jgu@odoo.com>, 2020
+# Martin Trigaux, 2020
+# Daniela Cervantes <dace@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n"
+"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nombre mostrado"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "Clave API de PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "ID de la cuenta PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "ID del comerciante PayU Latam"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+"PayU Latam: datos recibidos para referencia %s; múltiples órdenes "
+"encontradas"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+"PayU Latam: datos recibidos para referencia %s; ninguna orden encontrada"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: datos recibidos sin referencia (%s) o ID de transacción (%s) o "
+"signo (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Método de pago"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transacción de pago"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Proveedor"
diff --git a/addons/payment_payulatam/i18n/es_MX.po b/addons/payment_payulatam/i18n/es_MX.po
new file mode 100644
index 00000000..308119c2
--- /dev/null
+++ b/addons/payment_payulatam/i18n/es_MX.po
@@ -0,0 +1,99 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Cécile Collart <cco@odoo.com>, 2021
+# Daniela Cervantes <dace@odoo.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n"
+"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: es_MX\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nombre en pantalla"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Última modificación el"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "Clave API de PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "ID de la cuenta PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "ID del comerciante PayU Latam"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+"PayU Latam: datos recibidos para referencia %s; múltiples órdenes "
+"encontradas"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+"PayU Latam: datos recibidos para referencia %s; ninguna orden encontrada"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: datos recibidos sin referencia (%s) o ID de transacción (%s) o "
+"signo (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Método de pago"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transacción de pago"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Proveedor"
diff --git a/addons/payment_payulatam/i18n/et.po b/addons/payment_payulatam/i18n/et.po
new file mode 100644
index 00000000..78da1051
--- /dev/null
+++ b/addons/payment_payulatam/i18n/et.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Triine Aavik <triine@avalah.ee>, 2020
+# Eneli Õigus <enelioigus@gmail.com>, 2020
+# Marek Pontus, 2020
+# Martin Aavastik <martin@avalah.ee>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Martin Aavastik <martin@avalah.ee>, 2020\n"
+"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: et\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Kuva nimi"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Viimati muudetud (millal)"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Makse saaja"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Maksetehing"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Varustaja"
diff --git a/addons/payment_payulatam/i18n/eu.po b/addons/payment_payulatam/i18n/eu.po
new file mode 100644
index 00000000..26a207d0
--- /dev/null
+++ b/addons/payment_payulatam/i18n/eu.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2021
+# Eneko <eastigarraga@codesyntax.com>, 2021
+# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021\n"
+"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: eu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Izena erakutsi"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Azken aldaketa"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Ordainketa transakzioa"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Hornitzailea "
diff --git a/addons/payment_payulatam/i18n/fa.po b/addons/payment_payulatam/i18n/fa.po
new file mode 100644
index 00000000..cdb985f8
--- /dev/null
+++ b/addons/payment_payulatam/i18n/fa.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Hamid Darabi, 2020
+# Hamed Mohammadi <hamed@dehongi.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2020\n"
+"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fa\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "نام نمایشی"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "شناسه"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "آخرین تغییر در"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "دریافت کننده پرداخت"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "تراکنش پرداخت"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "فراهم‌کننده"
diff --git a/addons/payment_payulatam/i18n/fi.po b/addons/payment_payulatam/i18n/fi.po
new file mode 100644
index 00000000..c8e2e1c4
--- /dev/null
+++ b/addons/payment_payulatam/i18n/fi.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020
+# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020
+# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020\n"
+"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Näyttönimi"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "Tunniste (ID)"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Viimeksi muokattu"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Maksun vastaanottaja"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Maksutapahtuma"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Palveluntarjoaja"
diff --git a/addons/payment_payulatam/i18n/fr.po b/addons/payment_payulatam/i18n/fr.po
new file mode 100644
index 00000000..5ae65164
--- /dev/null
+++ b/addons/payment_payulatam/i18n/fr.po
@@ -0,0 +1,103 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020
+# Cécile Collart <cco@odoo.com>, 2020
+# Gilles Mangin <gilles.mangin@phidias.fr>, 2020
+# Frédéric GILSON <frederic.gilson@logicasoft.eu>, 2020
+# Pauline Thiry <pth@odoo.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Pauline Thiry <pth@odoo.com>, 2020\n"
+"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nom affiché"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Dernière modification le"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "Clé API PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "Identifiant du Compte PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "Identifiant du Marchand PayU Latam"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+"PayU Latam : données reçues pour la référence %s ; plusieurs commandes "
+"trouvées"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+"PayU Latam : données reçues pour la référence %s ; aucune commande trouvée"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam : données reçues avec absence de référence (%s), d'identifiant de"
+" transaction (%s) ou de signature (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Intermédiaire de paiement"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transaction"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Transporteur"
diff --git a/addons/payment_payulatam/i18n/he.po b/addons/payment_payulatam/i18n/he.po
new file mode 100644
index 00000000..c6d17a47
--- /dev/null
+++ b/addons/payment_payulatam/i18n/he.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# ExcaliberX <excaliberx@gmail.com>, 2020
+# Yihya Hugirat <hugirat@gmail.com>, 2020
+# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020\n"
+"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: he\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "שם תצוגה"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "מזהה"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "שונה לאחרונה ב - "
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "ספק שירות תשלומים"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "עסקת תשלום"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "ספק"
diff --git a/addons/payment_payulatam/i18n/hi.po b/addons/payment_payulatam/i18n/hi.po
new file mode 100644
index 00000000..d6013538
--- /dev/null
+++ b/addons/payment_payulatam/i18n/hi.po
@@ -0,0 +1,89 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hi\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/hr.po b/addons/payment_payulatam/i18n/hr.po
new file mode 100644
index 00000000..bad98374
--- /dev/null
+++ b/addons/payment_payulatam/i18n/hr.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020
+# Bole <bole@dajmi5.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Bole <bole@dajmi5.com>, 2021\n"
+"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hr\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Naziv"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Zadnja promjena"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Stjecatelj plaćanja"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transakcija plaćanja"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Davatelj "
diff --git a/addons/payment_payulatam/i18n/hu.po b/addons/payment_payulatam/i18n/hu.po
new file mode 100644
index 00000000..4fd2a510
--- /dev/null
+++ b/addons/payment_payulatam/i18n/hu.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2021
+# Tamás Németh <ntomasz81@gmail.com>, 2021
+# Ákos Nagy <akos.nagy@oregional.hu>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Ákos Nagy <akos.nagy@oregional.hu>, 2021\n"
+"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: hu\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Név megjelenítése"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "Azonosító"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Legutóbb módosítva"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Fizetési szolgáltató"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Fizetési tranzakció"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Szolgáltató"
diff --git a/addons/payment_payulatam/i18n/id.po b/addons/payment_payulatam/i18n/id.po
new file mode 100644
index 00000000..915be64c
--- /dev/null
+++ b/addons/payment_payulatam/i18n/id.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020
+# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020\n"
+"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nama Tampilan"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Terakhir diubah pada"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Pemilik Tagihan"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transaksi Tagihan"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Pemberi"
diff --git a/addons/payment_payulatam/i18n/it.po b/addons/payment_payulatam/i18n/it.po
new file mode 100644
index 00000000..97a92add
--- /dev/null
+++ b/addons/payment_payulatam/i18n/it.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Sergio Zanchetta <primes2h@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2020\n"
+"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nome visualizzato"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Ultima modifica il"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "Chiave API PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "ID account PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "ID commerciante PayU Latam"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam: ricevuti dati con riferimento %s; trovati ordini multipli"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam: ricevuti dati con riferimento %s; nessun ordine trovato"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: ricevuti dati con riferimento (%s), id transazione (%s) o sign "
+"(%s) mancante"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Sistema di pagamento"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transazione di pagamento"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Fornitore"
diff --git a/addons/payment_payulatam/i18n/ja.po b/addons/payment_payulatam/i18n/ja.po
new file mode 100644
index 00000000..171991e5
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ja.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020
+# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020
+# Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Norimichi Sugimoto <norimichi.sugimoto@tls-ltd.co.jp>, 2020\n"
+"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "表示名"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "最終更新日"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "決済サービス"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "決済トランザクション"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "プロバイダ"
diff --git a/addons/payment_payulatam/i18n/ka.po b/addons/payment_payulatam/i18n/ka.po
new file mode 100644
index 00000000..0ecc6e26
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ka.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021
+# Temur, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Temur, 2021\n"
+"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ka\n"
+"Plural-Forms: nplurals=2; plural=(n!=1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "სახელი"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "იდენტიფიკატორი/ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "ბოლოს განახლებულია"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "გადახდის ოპერატორი"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "გადახდის ტრანზაქცია"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/km.po b/addons/payment_payulatam/i18n/km.po
new file mode 100644
index 00000000..b1a3c1ea
--- /dev/null
+++ b/addons/payment_payulatam/i18n/km.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Sengtha Chay <sengtha@gmail.com>, 2020
+# Lux Sok <sok.lux@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n"
+"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: km\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "ឈ្មោះសំរាប់បង្ហាញ"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "អត្តសញ្ញាណ"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "ការបង់ថ្លៃទំនិញ"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "ការបង់ប្រាក់សំរាប់ប្រតិបត្តិការ"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "ការផ្តល់ជូន"
diff --git a/addons/payment_payulatam/i18n/ko.po b/addons/payment_payulatam/i18n/ko.po
new file mode 100644
index 00000000..b6ea7786
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ko.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# JH CHOI <hwangtog@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2020\n"
+"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "이름 표시"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "최근 수정"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API 키"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam 계정 ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "PayU Latam 판매자 ID"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam : 참조 %s에 대한 데이터를 수신했습니다; 다중 주문이 발견되었습니다."
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam : 참조 %s에 대한 데이터를 수신했습니다; 주문이 없습니다"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr "PayU Latam : 누락된 참조(%s) 또는 거래 id (%s) 또는 서명 (%s)이 포함된 데이터를 수신했습니다"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "결제 매입사"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "결제 처리"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "공급업체"
diff --git a/addons/payment_payulatam/i18n/lb.po b/addons/payment_payulatam/i18n/lb.po
new file mode 100644
index 00000000..24a5fcaa
--- /dev/null
+++ b/addons/payment_payulatam/i18n/lb.po
@@ -0,0 +1,71 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~12.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-08-26 08:16+0000\n"
+"PO-Revision-Date: 2019-08-26 09:12+0000\n"
+"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/lt.po b/addons/payment_payulatam/i18n/lt.po
new file mode 100644
index 00000000..71ab933f
--- /dev/null
+++ b/addons/payment_payulatam/i18n/lt.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2021
+# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021
+# Silvija Butko <silvija.butko@gmail.com>, 2021
+# Linas Versada <linaskrisiukenas@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n"
+"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lt\n"
+"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Rodomas pavadinimas"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Paskutinį kartą keista"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Mokėjimo surinkėjas"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Mokėjimo operacija"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Tiekėjas"
diff --git a/addons/payment_payulatam/i18n/lv.po b/addons/payment_payulatam/i18n/lv.po
new file mode 100644
index 00000000..2d65843a
--- /dev/null
+++ b/addons/payment_payulatam/i18n/lv.po
@@ -0,0 +1,89 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: lv\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/mn.po b/addons/payment_payulatam/i18n/mn.po
new file mode 100644
index 00000000..e86b3445
--- /dev/null
+++ b/addons/payment_payulatam/i18n/mn.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020\n"
+"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: mn\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Дэлгэрэнгүй нэр"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Сүүлд зассан огноо"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Төлбөрийн хэрэгсэл"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Төлбөрийн гүйлгээ"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Үйлчилгээ үзүүлэгч"
diff --git a/addons/payment_payulatam/i18n/nb.po b/addons/payment_payulatam/i18n/nb.po
new file mode 100644
index 00000000..c78bf4fe
--- /dev/null
+++ b/addons/payment_payulatam/i18n/nb.po
@@ -0,0 +1,94 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Marius Stedjan <marius@stedjan.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n"
+"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nb\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Visningsnavn"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Sist endret"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Betalingsinnløser"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Betalingstransaksjon"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Innløser"
diff --git a/addons/payment_payulatam/i18n/nl.po b/addons/payment_payulatam/i18n/nl.po
new file mode 100644
index 00000000..3f9d6733
--- /dev/null
+++ b/addons/payment_payulatam/i18n/nl.po
@@ -0,0 +1,98 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020
+# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n"
+"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: nl\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Schermnaam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Laatst gewijzigd op"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API sleutel"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam account ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "PayU Latam handelaar ID"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+"PayU Latam: data ontvangen voor referentie %s; meerdere orders gevonden"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam: data ontvangen voor referentie %s; geen order gevonden"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: data ontvangen met ontbrekende referentie (%s) of transactie id "
+"(%s) of teken (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Betalingsprovider"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Betalingstransactie"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Provider"
diff --git a/addons/payment_payulatam/i18n/payment_payulatam.pot b/addons/payment_payulatam/i18n/payment_payulatam.pot
new file mode 100644
index 00000000..42ae1b84
--- /dev/null
+++ b/addons/payment_payulatam/i18n/payment_payulatam.pot
@@ -0,0 +1,89 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-01 07:28+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_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/pl.po b/addons/payment_payulatam/i18n/pl.po
new file mode 100644
index 00000000..7ff24d87
--- /dev/null
+++ b/addons/payment_payulatam/i18n/pl.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020
+# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020\n"
+"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pl\n"
+"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nazwa wyświetlana"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Data ostatniej modyfikacji"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Beneficjent płatności"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transakcja płatności"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Dostawca"
diff --git a/addons/payment_payulatam/i18n/pt.po b/addons/payment_payulatam/i18n/pt.po
new file mode 100644
index 00000000..db9026bc
--- /dev/null
+++ b/addons/payment_payulatam/i18n/pt.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Manuela Silva <manuelarodsilva@gmail.com>, 2020
+# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020
+# Pedro Filipe <pedro2.10@hotmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n"
+"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nome"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Última Modificação em"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Intermediário de Pagamento"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transação de Pagamento"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Provedor"
diff --git a/addons/payment_payulatam/i18n/pt_BR.po b/addons/payment_payulatam/i18n/pt_BR.po
new file mode 100644
index 00000000..4107f0e3
--- /dev/null
+++ b/addons/payment_payulatam/i18n/pt_BR.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020
+# Martin Trigaux, 2020
+# Mateus Lopes <mateus1@gmail.com>, 2020
+# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020
+# Éder Brito <britoederr@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n"
+"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nome exibido"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Última modificação em"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Método de Pagamento"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Transação do Pagamento"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Fornecedor"
diff --git a/addons/payment_payulatam/i18n/ro.po b/addons/payment_payulatam/i18n/ro.po
new file mode 100644
index 00000000..e4e84602
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ro.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020
+# Foldi Robert <foldirobert@nexterp.ro>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n"
+"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ro\n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Nume afișat"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Ultima modificare la"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Procesator Plată"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Tranzacție plată"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Furnizor"
diff --git a/addons/payment_payulatam/i18n/ru.po b/addons/payment_payulatam/i18n/ru.po
new file mode 100644
index 00000000..b02cf095
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ru.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# ILMIR <karamov@it-projects.info>, 2020
+# Oleg Kuryan <oleg@ventor.tech>, 2020
+# Irina Fedulova <istartlin@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Irina Fedulova <istartlin@gmail.com>, 2020\n"
+"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ru\n"
+"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Отображаемое имя"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "Идентификатор"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Последнее изменение"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Платежная система"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Операция Оплаты"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Провайдер"
diff --git a/addons/payment_payulatam/i18n/si.po b/addons/payment_payulatam/i18n/si.po
new file mode 100644
index 00000000..157172cb
--- /dev/null
+++ b/addons/payment_payulatam/i18n/si.po
@@ -0,0 +1,89 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: si\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/sk.po b/addons/payment_payulatam/i18n/sk.po
new file mode 100644
index 00000000..5ed71929
--- /dev/null
+++ b/addons/payment_payulatam/i18n/sk.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020
+# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020
+# 192015edb78c7397bdecc2172c7447b3, 2020
+# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n"
+"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Zobrazovaný názov"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Posledná úprava"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Príjemca platby "
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Platobná transakcia"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Poskytovateľ"
diff --git a/addons/payment_payulatam/i18n/sl.po b/addons/payment_payulatam/i18n/sl.po
new file mode 100644
index 00000000..6496eb7d
--- /dev/null
+++ b/addons/payment_payulatam/i18n/sl.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2021
+# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021
+# matjaz k <matjaz@mentis.si>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: matjaz k <matjaz@mentis.si>, 2021\n"
+"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Prikazani naziv"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Zadnjič spremenjeno"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Ponudnik plačilne storitve"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Plačilna transakcija"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Ponudnik"
diff --git a/addons/payment_payulatam/i18n/sv.po b/addons/payment_payulatam/i18n/sv.po
new file mode 100644
index 00000000..36e9ad21
--- /dev/null
+++ b/addons/payment_payulatam/i18n/sv.po
@@ -0,0 +1,96 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2021
+# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021
+# Daniel Forslund <daniel.forslund@gmail.com>, 2021
+# Kim Asplund <kim.asplund@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2021\n"
+"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: sv\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Visningsnamn"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Senast redigerad"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Betalnings Inlösare"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Betalningstransaktion"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Leverantör"
diff --git a/addons/payment_payulatam/i18n/th.po b/addons/payment_payulatam/i18n/th.po
new file mode 100644
index 00000000..bc951880
--- /dev/null
+++ b/addons/payment_payulatam/i18n/th.po
@@ -0,0 +1,95 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020
+# Odoo Thaidev <odoothaidev@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n"
+"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: th\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "ชื่อที่ใช้แสดง"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "รหัส"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "ผู้รับชำระ"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "ธุรกรรมการชำระเงิน"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "ผู้ให้บริการ"
diff --git a/addons/payment_payulatam/i18n/tr.po b/addons/payment_payulatam/i18n/tr.po
new file mode 100644
index 00000000..5f466863
--- /dev/null
+++ b/addons/payment_payulatam/i18n/tr.po
@@ -0,0 +1,101 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Ediz Duman <neps1192@gmail.com>, 2020
+# Martin Trigaux, 2020
+# Levent Karakaş <levent@mektup.at>, 2020
+# Murat Kaplan <muratk@projetgrup.com>, 2020
+# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020
+# abc Def <hdogan1974@gmail.com>, 2020
+# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021\n"
+"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Görünüm Adı"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Son Düzenleme"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API Anahtarı"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam Hesap Kimliği"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "PayU Latam Tüccar Kimliği"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam: received data for reference %s; multiple orders found"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam: received data for reference %s; no order found"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Ödeme Alıcısı"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Ödeme İşlemi"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Sağlayıcı"
diff --git a/addons/payment_payulatam/i18n/uk.po b/addons/payment_payulatam/i18n/uk.po
new file mode 100644
index 00000000..fd33efe0
--- /dev/null
+++ b/addons/payment_payulatam/i18n/uk.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n"
+"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: uk\n"
+"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Відобразити назву"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Останні зміни на"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "API ключ PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "ID рахунку PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "ID продавця PayU Latam"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam: отримані дані для %s; знайдено кілька замовлень"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+"PayU Latam: отримані дані для референсу %s; не знайдено жодного замовлення"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: отримані дані з відсутнім референсом (%s) або id транзакції (%s)"
+" або підпис (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "Платіжний еквайєр"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Платіжна операція"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Провайдер"
diff --git a/addons/payment_payulatam/i18n/ur.po b/addons/payment_payulatam/i18n/ur.po
new file mode 100644
index 00000000..725e5ff6
--- /dev/null
+++ b/addons/payment_payulatam/i18n/ur.po
@@ -0,0 +1,89 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: ur\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr ""
diff --git a/addons/payment_payulatam/i18n/vi.po b/addons/payment_payulatam/i18n/vi.po
new file mode 100644
index 00000000..3cb20a4d
--- /dev/null
+++ b/addons/payment_payulatam/i18n/vi.po
@@ -0,0 +1,98 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020
+# Duy BQ <duybq86@gmail.com>, 2020
+# Dung Nguyen Thi <dungnt@trobz.com>, 2020
+# Trần Hà <tranthuha13590@gmail.com>, 2021
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n"
+"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: vi\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "Tên hiển thị"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "Sửa lần cuối vào"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API Key"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam Account ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "PayU Latam Merchant ID"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam: received data for reference %s; multiple orders found"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam: received data for reference %s; no order found"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "NCC dịch vụ Thanh toán"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "Giao dịch thanh toán"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "Nhà cung cấp"
diff --git a/addons/payment_payulatam/i18n/zh_CN.po b/addons/payment_payulatam/i18n/zh_CN.po
new file mode 100644
index 00000000..ae0f8b76
--- /dev/null
+++ b/addons/payment_payulatam/i18n/zh_CN.po
@@ -0,0 +1,97 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# Martin Trigaux, 2020
+# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020
+# guohuadeng <guohuadeng@hotmail.com>, 2020
+# Felix Yuen <fyu@odoo.com>, 2020
+# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020\n"
+"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "显示名称"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "最后修改日"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr "PayU Latam API 钥匙"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr "PayU Latam 账户 ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr "PayU Latam 商家ID"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam: 收到参考%s的数据; 找到多个订单"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam: 已接收参考  %s; 未找到订单"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr "PayU Latam: 收到缺少参考的数据 (%s) 或交易ID(%s)或符号(%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "支付收款"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "付款交易"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "物流商"
diff --git a/addons/payment_payulatam/i18n/zh_TW.po b/addons/payment_payulatam/i18n/zh_TW.po
new file mode 100644
index 00000000..5634edf4
--- /dev/null
+++ b/addons/payment_payulatam/i18n/zh_TW.po
@@ -0,0 +1,93 @@
+# Translation of Odoo Server.
+# This file contains the translation of the following modules:
+# * payment_payulatam
+#
+# Translators:
+# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Odoo Server saas~13.5\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2020-09-01 07:28+0000\n"
+"PO-Revision-Date: 2020-09-07 08:15+0000\n"
+"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n"
+"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: \n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__display_name
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__display_name
+msgid "Display Name"
+msgstr "顯示名稱"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__id
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction__id
+msgid "ID"
+msgstr "ID"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer____last_update
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_transaction____last_update
+msgid "Last Modified on"
+msgstr "最後修改於"
+
+#. module: payment_payulatam
+#: model:ir.model.fields.selection,name:payment_payulatam.selection__payment_acquirer__provider__payulatam
+msgid "PayU Latam"
+msgstr "PayU Latam"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_api_key
+msgid "PayU Latam API Key"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_account_id
+msgid "PayU Latam Account ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__payulatam_merchant_id
+msgid "PayU Latam Merchant ID"
+msgstr ""
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; multiple orders found"
+msgstr "PayU Latam:收到資料供參考%s;找到多個訂單"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid "PayU Latam: received data for reference %s; no order found"
+msgstr "PayU Latam:收到資料供參考%s;未找到訂單"
+
+#. module: payment_payulatam
+#: code:addons/payment_payulatam/models/payment.py:0
+#, python-format
+msgid ""
+"PayU Latam: received data with missing reference (%s) or transaction id (%s)"
+" or sign (%s)"
+msgstr "PayU Latam:收到的資料缺少參考 (%s) 或事務 ID (%s) 或簽名 (%s)"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_acquirer
+msgid "Payment Acquirer"
+msgstr "付款收單方"
+
+#. module: payment_payulatam
+#: model:ir.model,name:payment_payulatam.model_payment_transaction
+msgid "Payment Transaction"
+msgstr "付款交易"
+
+#. module: payment_payulatam
+#: model:ir.model.fields,field_description:payment_payulatam.field_payment_acquirer__provider
+msgid "Provider"
+msgstr "服務商"
diff --git a/addons/payment_payulatam/models/__init__.py b/addons/payment_payulatam/models/__init__.py
new file mode 100644
index 00000000..2ec5b9cd
--- /dev/null
+++ b/addons/payment_payulatam/models/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import payment
diff --git a/addons/payment_payulatam/models/payment.py b/addons/payment_payulatam/models/payment.py
new file mode 100644
index 00000000..fc0c618e
--- /dev/null
+++ b/addons/payment_payulatam/models/payment.py
@@ -0,0 +1,145 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+import decimal
+import logging
+import uuid
+
+from hashlib import md5
+from werkzeug import urls
+
+from odoo import api, fields, models, _
+from odoo.addons.payment.models.payment_acquirer import ValidationError
+from odoo.tools.float_utils import float_compare
+
+
+_logger = logging.getLogger(__name__)
+
+
+class PaymentAcquirerPayulatam(models.Model):
+ _inherit = 'payment.acquirer'
+
+ provider = fields.Selection(selection_add=[
+ ('payulatam', 'PayU Latam')
+ ], ondelete={'payulatam': 'set default'})
+ payulatam_merchant_id = fields.Char(string="PayU Latam Merchant ID", required_if_provider='payulatam', groups='base.group_user')
+ payulatam_account_id = fields.Char(string="PayU Latam Account ID", required_if_provider='payulatam', groups='base.group_user')
+ payulatam_api_key = fields.Char(string="PayU Latam API Key", required_if_provider='payulatam', groups='base.group_user')
+
+ def _get_payulatam_urls(self, environment):
+ """ PayUlatam URLs"""
+ if environment == 'prod':
+ return 'https://checkout.payulatam.com/ppp-web-gateway-payu/'
+ return 'https://sandbox.checkout.payulatam.com/ppp-web-gateway-payu/'
+
+ def _payulatam_generate_sign(self, inout, values):
+ if inout not in ('in', 'out'):
+ raise Exception("Type must be 'in' or 'out'")
+
+ if inout == 'in':
+ data_string = ('~').join((self.payulatam_api_key, self.payulatam_merchant_id, values['referenceCode'],
+ str(values['amount']), values['currency']))
+ else:
+ rounded_amount = decimal.Decimal(values.get('TX_VALUE')).quantize(decimal.Decimal('0.1'), decimal.ROUND_HALF_EVEN)
+ data_string = ('~').join((self.payulatam_api_key, self.payulatam_merchant_id, values['referenceCode'],
+ str(rounded_amount), values['currency'], values.get('transactionState')))
+ return md5(data_string.encode('utf-8')).hexdigest()
+
+ def payulatam_form_generate_values(self, values):
+ base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url')
+ tx = self.env['payment.transaction'].search([('reference', '=', values.get('reference'))])
+ # payulatam will not allow any payment twise even if payment was failed last time.
+ # so, replace reference code if payment is not done or pending.
+ if tx.state not in ['done', 'pending']:
+ tx.reference = str(uuid.uuid4())
+ payulatam_values = dict(
+ values,
+ merchantId=self.payulatam_merchant_id,
+ accountId=self.payulatam_account_id,
+ description=values.get('reference'),
+ referenceCode=tx.reference,
+ amount=values['amount'],
+ tax='0', # This is the transaction VAT. If VAT zero is sent the system, 19% will be applied automatically. It can contain two decimals. Eg 19000.00. In the where you do not charge VAT, it should should be set as 0.
+ taxReturnBase='0',
+ currency=values['currency'].name,
+ buyerEmail=values['partner_email'],
+ responseUrl=urls.url_join(base_url, '/payment/payulatam/response'),
+ )
+ payulatam_values['signature'] = self._payulatam_generate_sign("in", payulatam_values)
+ return payulatam_values
+
+ def payulatam_get_form_action_url(self):
+ self.ensure_one()
+ environment = 'prod' if self.state == 'enabled' else 'test'
+ return self._get_payulatam_urls(environment)
+
+
+class PaymentTransactionPayulatam(models.Model):
+ _inherit = 'payment.transaction'
+
+ @api.model
+ def _payulatam_form_get_tx_from_data(self, data):
+ """ Given a data dict coming from payulatam, verify it and find the related
+ transaction record. """
+ reference, txnid, sign = data.get('referenceCode'), data.get('transactionId'), data.get('signature')
+ if not reference or not txnid or not sign:
+ raise ValidationError(_('PayU Latam: received data with missing reference (%s) or transaction id (%s) or sign (%s)') % (reference, txnid, sign))
+
+ transaction = self.search([('reference', '=', reference)])
+
+ if not transaction:
+ error_msg = (_('PayU Latam: received data for reference %s; no order found') % (reference))
+ raise ValidationError(error_msg)
+ elif len(transaction) > 1:
+ error_msg = (_('PayU Latam: received data for reference %s; multiple orders found') % (reference))
+ raise ValidationError(error_msg)
+
+ # verify shasign
+ sign_check = transaction.acquirer_id._payulatam_generate_sign('out', data)
+ if sign_check.upper() != sign.upper():
+ raise ValidationError(('PayU Latam: invalid sign, received %s, computed %s, for data %s') % (sign, sign_check, data))
+ return transaction
+
+ def _payulatam_form_get_invalid_parameters(self, data):
+ invalid_parameters = []
+
+ if self.acquirer_reference and data.get('transactionId') != self.acquirer_reference:
+ invalid_parameters.append(('Reference code', data.get('transactionId'), self.acquirer_reference))
+ if float_compare(float(data.get('TX_VALUE', '0.0')), self.amount, 2) != 0:
+ invalid_parameters.append(('Amount', data.get('TX_VALUE'), '%.2f' % self.amount))
+ if data.get('merchantId') != self.acquirer_id.payulatam_merchant_id:
+ invalid_parameters.append(('Merchant Id', data.get('merchantId'), self.acquirer_id.payulatam_merchant_id))
+ return invalid_parameters
+
+ def _payulatam_form_validate(self, data):
+ self.ensure_one()
+
+ status = data.get('lapTransactionState') or data.find('transactionResponse').find('state').text
+ res = {
+ 'acquirer_reference': data.get('transactionId') or data.find('transactionResponse').find('transactionId').text,
+ 'state_message': data.get('message') or ""
+ }
+
+ if status == 'APPROVED':
+ _logger.info('Validated PayU Latam payment for tx %s: set as done' % (self.reference))
+ res.update(state='done', date=fields.Datetime.now())
+ self._set_transaction_done()
+ self.write(res)
+ self.execute_callback()
+ return True
+ elif status == 'PENDING':
+ _logger.info('Received notification for PayU Latam payment %s: set as pending' % (self.reference))
+ res.update(state='pending')
+ self._set_transaction_pending()
+ return self.write(res)
+ elif status in ['EXPIRED', 'DECLINED']:
+ _logger.info('Received notification for PayU Latam payment %s: set as Cancel' % (self.reference))
+ res.update(state='cancel')
+ self._set_transaction_cancel()
+ return self.write(res)
+ else:
+ error = 'Received unrecognized status for PayU Latam payment %s: %s, set as error' % (self.reference, status)
+ _logger.info(error)
+ res.update(state='cancel', state_message=error)
+ self._set_transaction_cancel()
+ return self.write(res)
diff --git a/addons/payment_payulatam/static/src/img/payulatam_icon.png b/addons/payment_payulatam/static/src/img/payulatam_icon.png
new file mode 100644
index 00000000..dfaf42f9
--- /dev/null
+++ b/addons/payment_payulatam/static/src/img/payulatam_icon.png
Binary files differ
diff --git a/addons/payment_payulatam/tests/__init__.py b/addons/payment_payulatam/tests/__init__.py
new file mode 100644
index 00000000..09671a17
--- /dev/null
+++ b/addons/payment_payulatam/tests/__init__.py
@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+
+from . import test_payulatam
diff --git a/addons/payment_payulatam/tests/test_payulatam.py b/addons/payment_payulatam/tests/test_payulatam.py
new file mode 100644
index 00000000..710d7dab
--- /dev/null
+++ b/addons/payment_payulatam/tests/test_payulatam.py
@@ -0,0 +1,154 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+from lxml import objectify
+from werkzeug import urls
+
+from odoo.addons.payment.tests.common import PaymentAcquirerCommon
+from odoo.tests import tagged
+
+
+class PayUlatamCommon(PaymentAcquirerCommon):
+
+ @classmethod
+ def setUpClass(cls, chart_template_ref=None):
+ super().setUpClass(chart_template_ref=chart_template_ref)
+ cls.payulatam = cls.env.ref('payment.payment_acquirer_payulatam')
+ cls.payulatam.write({
+ 'payulatam_account_id': 'dummy',
+ 'payulatam_merchant_id': 'dummy',
+ 'payulatam_api_key': 'dummy',
+ 'state': 'test',
+ })
+
+
+@tagged('post_install', '-at_install', 'external', '-standard')
+class PayUlatamForm(PayUlatamCommon):
+
+ def test_10_payulatam_form_render(self):
+ base_url = self.env['ir.config_parameter'].get_param('web.base.url')
+ self.assertEqual(self.payulatam.state, 'test', 'test without test environment')
+ self.payulatam.write({
+ 'payulatam_merchant_id': 'dummy',
+ 'payulatam_account_id': 'dummy',
+ 'payulatam_api_key': 'dummy',
+ })
+
+ # ----------------------------------------
+ # Test: button direct rendering
+ # ----------------------------------------
+ self.env['payment.transaction'].create({
+ 'reference': 'test_ref0',
+ 'amount': 0.001,
+ 'currency_id': self.currency_euro.id,
+ 'acquirer_id': self.payulatam.id,
+ 'partner_id': self.buyer_id
+ })
+
+ # render the button
+ res = self.payulatam.render(
+ 'test_ref0', 0.01, self.currency_euro.id,
+ values=self.buyer_values)
+
+ form_values = {
+ 'merchantId': 'dummy',
+ 'accountId': 'dummy',
+ 'description': 'test_ref0',
+ 'referenceCode': 'test',
+ 'amount': '0.01',
+ 'currency': 'EUR',
+ 'tax': '0',
+ 'taxReturnBase': '0',
+ 'buyerEmail': 'norbert.buyer@example.com',
+ 'responseUrl': urls.url_join(base_url, '/payment/payulatam/response'),
+ 'extra1': None
+ }
+ # check form result
+ tree = objectify.fromstring(res)
+
+ data_set = tree.xpath("//input[@name='data_set']")
+ self.assertEqual(len(data_set), 1, 'payulatam: Found %d "data_set" input instead of 1' % len(data_set))
+ self.assertEqual(data_set[0].get('data-action-url'), 'https://sandbox.checkout.payulatam.com/ppp-web-gateway-payu/', 'payulatam: wrong form POST url')
+ for form_input in tree.input:
+ if form_input.get('name') in ['submit', 'data_set', 'signature', 'referenceCode']:
+ continue
+ self.assertEqual(
+ form_input.get('value'),
+ form_values[form_input.get('name')],
+ 'payulatam: wrong value for input %s: received %s instead of %s' % (form_input.get('name'), form_input.get('value'), form_values[form_input.get('name')])
+ )
+
+ def test_20_payulatam_form_management(self):
+ self.assertEqual(self.payulatam.state, 'test', 'test without test environment')
+
+ # typical data posted by payulatam after client has successfully paid
+ payulatam_post_data = {
+ 'installmentsNumber': '1',
+ 'lapPaymentMethod': 'VISA',
+ 'description': 'test_ref0',
+ 'currency': 'EUR',
+ 'extra2': '',
+ 'lng': 'es',
+ 'transactionState': '7',
+ 'polPaymentMethod': '211',
+ 'pseCycle': '',
+ 'pseBank': '',
+ 'referenceCode': 'test_ref_10',
+ 'reference_pol': '844164756',
+ 'signature': '88f11d693d3551419f86850948d731ba',
+ 'pseReference3': '',
+ 'buyerEmail': 'admin@yourcompany.example.com',
+ 'lapResponseCode': 'PENDING_TRANSACTION_CONFIRMATION',
+ 'pseReference2': '',
+ 'cus': '',
+ 'orderLanguage': 'es',
+ 'TX_VALUE': '0.01',
+ 'risk': '',
+ 'trazabilityCode': '',
+ 'extra3': '',
+ 'pseReference1': '',
+ 'polTransactionState': '14',
+ 'polResponseCode': '25',
+ 'merchant_name': 'Test PayU Test comercio',
+ 'merchant_url': 'http://pruebaslapv.xtrweb.com',
+ 'extra1': '/shop/payment/validate',
+ 'message': 'PENDING',
+ 'lapPaymentMethodType': 'CARD',
+ 'polPaymentMethodType': '7',
+ 'telephone': '7512354',
+ 'merchantId': 'dummy',
+ 'transactionId': 'b232989a-4aa8-42d1-bace-153236eee791',
+ 'authorizationCode': '',
+ 'lapTransactionState': 'PENDING',
+ 'TX_TAX': '.00',
+ 'merchant_address': 'Av 123 Calle 12'
+ }
+
+ # create tx
+ tx = self.env['payment.transaction'].create({
+ 'amount': 0.01,
+ 'acquirer_id': self.payulatam.id,
+ 'currency_id': self.currency_euro.id,
+ 'reference': 'test_ref_10',
+ 'partner_name': 'Norbert Buyer',
+ 'partner_country_id': self.country_france.id,
+ 'partner_id': self.buyer_id})
+
+ # validate transaction
+ tx.form_feedback(payulatam_post_data, 'payulatam')
+ # check
+ self.assertEqual(tx.state, 'pending', 'Payulatam: wrong state after receiving a valid pending notification')
+ self.assertEqual(tx.state_message, 'PENDING', 'Payulatam: wrong state message after receiving a valid pending notification')
+ self.assertEqual(tx.acquirer_reference, 'b232989a-4aa8-42d1-bace-153236eee791', 'PayU Latam: wrong txn_id after receiving a valid pending notification')
+
+ # update transaction
+ tx.write({
+ 'state': 'draft',
+ 'acquirer_reference': False})
+
+ # update notification from payulatam
+ payulatam_post_data['lapTransactionState'] = 'APPROVED'
+ # validate transaction
+ tx.form_feedback(payulatam_post_data, 'payulatam')
+ # check transaction
+ self.assertEqual(tx.state, 'done', 'payulatam: wrong state after receiving a valid pending notification')
+ self.assertEqual(tx.acquirer_reference, 'b232989a-4aa8-42d1-bace-153236eee791', 'payulatam: wrong txn_id after receiving a valid pending notification')
diff --git a/addons/payment_payulatam/views/payment_payulatam_templates.xml b/addons/payment_payulatam/views/payment_payulatam_templates.xml
new file mode 100644
index 00000000..793b1e0e
--- /dev/null
+++ b/addons/payment_payulatam/views/payment_payulatam_templates.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <template id="payulatam_form">
+ <div>
+ <input type="hidden" name="data_set" t-att-data-action-url="tx_url" data-remove-me=""/>
+ <input type="hidden" name="merchantId" t-att-value='merchantId'/>
+ <input type="hidden" name="accountId" t-att-value='accountId'/>
+ <input type="hidden" name="description" t-att-value='description'/>
+ <input type="hidden" name="referenceCode" t-att-value='referenceCode'/>
+ <input type="hidden" name="amount" t-att-value='amount'/>
+ <input type="hidden" name="currency" t-att-value='currency'/>
+ <input type="hidden" name="signature" t-att-value='signature'/>
+ <input type="hidden" name="tax" t-att-value='tax'/>
+ <input type="hidden" name="taxReturnBase" t-att-value="taxReturnBase"/>
+ <input type="hidden" name="buyerEmail" t-att-value='buyerEmail'/>
+ <input type="hidden" name="responseUrl" t-att-value='responseUrl'/>
+ <input type="hidden" name="extra1" t-att-value="extra1"/>
+ </div>
+ </template>
+</odoo>
diff --git a/addons/payment_payulatam/views/payment_views.xml b/addons/payment_payulatam/views/payment_views.xml
new file mode 100644
index 00000000..84a73c0d
--- /dev/null
+++ b/addons/payment_payulatam/views/payment_views.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="utf-8"?>
+<odoo>
+ <record id="payment_acquirer_form_inherit_payment_payulatam" model="ir.ui.view">
+ <field name="name">payment.acquirer.form.inherit.payment.payulatam</field>
+ <field name="model">payment.acquirer</field>
+ <field name="inherit_id" ref="payment.acquirer_form"/>
+ <field name="arch" type="xml">
+ <xpath expr='//group[@name="acquirer"]' position='inside'>
+ <group attrs="{'invisible': [('provider', '!=', 'payulatam')]}">
+ <field name="payulatam_account_id" options="{'no_create': True}"/>
+ <field name="payulatam_merchant_id"/>
+ <field name="payulatam_api_key"/>
+ </group>
+ </xpath>
+ </field>
+ </record>
+</odoo>