diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/payment_buckaroo | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/payment_buckaroo')
93 files changed, 8026 insertions, 0 deletions
diff --git a/addons/payment_buckaroo/__init__.py b/addons/payment_buckaroo/__init__.py new file mode 100644 index 00000000..7632661d --- /dev/null +++ b/addons/payment_buckaroo/__init__.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import controllers +from odoo.addons.payment.models.payment_acquirer import create_missing_journal_for_acquirers +from odoo.addons.payment import reset_payment_provider + +def uninstall_hook(cr, registry): + reset_payment_provider(cr, registry, 'buckaroo') diff --git a/addons/payment_buckaroo/__manifest__.py b/addons/payment_buckaroo/__manifest__.py new file mode 100644 index 00000000..a0e3a07a --- /dev/null +++ b/addons/payment_buckaroo/__manifest__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- + +{ + 'name': 'Buckaroo Payment Acquirer', + 'category': 'Accounting/Payment Acquirers', + 'sequence': 355, + 'summary': 'Payment Acquirer: Buckaroo Implementation', + 'version': '1.0', + 'description': """Buckaroo Payment Acquirer""", + 'depends': ['payment'], + 'data': [ + 'views/payment_views.xml', + 'views/payment_buckaroo_templates.xml', + 'data/payment_acquirer_data.xml', + ], + 'installable': True, + 'application': True, + 'post_init_hook': 'create_missing_journal_for_acquirers', + 'uninstall_hook': 'uninstall_hook', + 'license': 'LGPL-3', +} diff --git a/addons/payment_buckaroo/controllers/__init__.py b/addons/payment_buckaroo/controllers/__init__.py new file mode 100644 index 00000000..65a8c120 --- /dev/null +++ b/addons/payment_buckaroo/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import main diff --git a/addons/payment_buckaroo/controllers/main.py b/addons/payment_buckaroo/controllers/main.py new file mode 100644 index 00000000..1810355c --- /dev/null +++ b/addons/payment_buckaroo/controllers/main.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- + +import logging +import pprint +import werkzeug + +from odoo import http +from odoo.http import request + +_logger = logging.getLogger(__name__) + + +class BuckarooController(http.Controller): + _return_url = '/payment/buckaroo/return' + _cancel_url = '/payment/buckaroo/cancel' + _exception_url = '/payment/buckaroo/error' + _reject_url = '/payment/buckaroo/reject' + + @http.route([ + '/payment/buckaroo/return', + '/payment/buckaroo/cancel', + '/payment/buckaroo/error', + '/payment/buckaroo/reject', + ], type='http', auth='public', csrf=False) + def buckaroo_return(self, **post): + """ Buckaroo.""" + _logger.info('Buckaroo: entering form_feedback with post data %s', pprint.pformat(post)) # debug + request.env['payment.transaction'].sudo().form_feedback(post, 'buckaroo') + post = {key.upper(): value for key, value in post.items()} + return_url = post.get('ADD_RETURNDATA') or '/' + return werkzeug.utils.redirect('/payment/process') diff --git a/addons/payment_buckaroo/data/payment_acquirer_data.xml b/addons/payment_buckaroo/data/payment_acquirer_data.xml new file mode 100644 index 00000000..50b74354 --- /dev/null +++ b/addons/payment_buckaroo/data/payment_acquirer_data.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + + <record id="payment.payment_acquirer_buckaroo" model="payment.acquirer"> + <field name="name">Buckaroo</field> + <field name="image_128" type="base64" file="payment_buckaroo/static/src/img/buckaroo_icon.png"/> + <field name="provider">buckaroo</field> + <field name="company_id" ref="base.main_company"/> + <field name="view_template_id" ref="buckaroo_form"/> + </record> + + </data> +</odoo> diff --git a/addons/payment_buckaroo/i18n/af.po b/addons/payment_buckaroo/i18n/af.po new file mode 100644 index 00000000..3d98bd9d --- /dev/null +++ b/addons/payment_buckaroo/i18n/af.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/am.po b/addons/payment_buckaroo/i18n/am.po new file mode 100644 index 00000000..e4d1048b --- /dev/null +++ b/addons/payment_buckaroo/i18n/am.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/ar.po b/addons/payment_buckaroo/i18n/ar.po new file mode 100644 index 00000000..c1e20fe4 --- /dev/null +++ b/addons/payment_buckaroo/i18n/ar.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Fahad Alqahtani <fahad@cloudland.sa>, 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "؛ تم العثور على طلبات متعددة" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; لم يُعثر على طلبات" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: shasign غير صالح، المستلم %s, المحسوب %s, للبيانات %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: البيانات المستلمة لرقم الإشارة %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: البيانات المستلمة ينقصها رقم إشارة (%s) أو pay_id (%s) أو shasign " +"(%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "معالج السداد" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "المزود" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "المفتاح السري (SecretKey)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "مفتاح الموقع" diff --git a/addons/payment_buckaroo/i18n/az.po b/addons/payment_buckaroo/i18n/az.po new file mode 100644 index 00000000..a22dcab6 --- /dev/null +++ b/addons/payment_buckaroo/i18n/az.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/bg.po b/addons/payment_buckaroo/i18n/bg.po new file mode 100644 index 00000000..e3d33d45 --- /dev/null +++ b/addons/payment_buckaroo/i18n/bg.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; открити множество поръчки" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; не е открита поръчка" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: невалиден шасинг, получен %s, изчислен %s, за данни %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: получени данни за референция %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: rполучени данни с липсваща референция (%s) или pay_id (%s) или " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Обработчик на плащане" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Доставчик" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Ключ за тайна" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Ключ за уебсайт" diff --git a/addons/payment_buckaroo/i18n/bn.po b/addons/payment_buckaroo/i18n/bn.po new file mode 100644 index 00000000..eb431724 --- /dev/null +++ b/addons/payment_buckaroo/i18n/bn.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "আইডি " + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "পেমেন্ট অর্জিত" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "পেমেন্ট লেনদেন" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/bs.po b/addons/payment_buckaroo/i18n/bs.po new file mode 100644 index 00000000..cd1a2184 --- /dev/null +++ b/addons/payment_buckaroo/i18n/bs.po @@ -0,0 +1,126 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Boško Stojaković <bluesoft83@gmail.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Ručna konfiguracija" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Slipovi" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Žičani prenos" diff --git a/addons/payment_buckaroo/i18n/ca.po b/addons/payment_buckaroo/i18n/ca.po new file mode 100644 index 00000000..12b59bce --- /dev/null +++ b/addons/payment_buckaroo/i18n/ca.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Lluís Dalmau <lluis.dalmau@guifi.net>, 2020 +# Martin Trigaux, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# jabelchi, 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: jabelchi, 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; diverses comandes trobades" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; comanda no trobada" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mètode de pagament" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveïdor" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Clau secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Clau de la Web" diff --git a/addons/payment_buckaroo/i18n/ckb.po b/addons/payment_buckaroo/i18n/ckb.po new file mode 100644 index 00000000..845e68c3 --- /dev/null +++ b/addons/payment_buckaroo/i18n/ckb.po @@ -0,0 +1,100 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ناسنامە" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "پارەوەرگر" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/cs.po b/addons/payment_buckaroo/i18n/cs.po new file mode 100644 index 00000000..d66e0582 --- /dev/null +++ b/addons/payment_buckaroo/i18n/cs.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# Jiří Podhorecký, 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: 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; nalezena vícenásobná objednávka" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nebyla nalezena žádná objednávka" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Platební brána" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovatel" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Klíč webstránky" diff --git a/addons/payment_buckaroo/i18n/da.po b/addons/payment_buckaroo/i18n/da.po new file mode 100644 index 00000000..94047e84 --- /dev/null +++ b/addons/payment_buckaroo/i18n/da.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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 +# lhmflexerp <lhm@flexerp.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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; flere ordre fundet" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; ingen ordre fundet" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: ugyldig shasign, modtaget %s, udregnet %s, for data %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: modtaget data til reference %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: Modtaget data med manglende reference (%s) eller pay_id (%s) eller" +" shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsindløser" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Udbyder" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "HemmeligNøgle" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "HjemmesideNøgle" diff --git a/addons/payment_buckaroo/i18n/de.po b/addons/payment_buckaroo/i18n/de.po new file mode 100644 index 00000000..0490eff3 --- /dev/null +++ b/addons/payment_buckaroo/i18n/de.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 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 Trigaux, 2020\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; mehrfache Bestellung gefunden" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; keine Bestellung gefunden" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: ungültiges Shasign, %s erhalten, %s berechnet, %s für Daten" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: empfangene Daten für Referenz %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: empfangene Daten mit fehlender Referenz (%s) oder pay_id (%s) oder" +" Shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Zahlungsanbieter" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Anbieter" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Geheimschlüssel(Secret)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/el.po b/addons/payment_buckaroo/i18n/el.po new file mode 100644 index 00000000..63503c6f --- /dev/null +++ b/addons/payment_buckaroo/i18n/el.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr ", βρέθηκαν πολλαπλές παραγγελίες" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr ", δεν βρέθηκε παραγγελία" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Buckaroo: μη έγκυρη υπογραφή sha, λήφθηκε %s, υπολογισμένο %s, για τα " +"δεδομένα %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: λήφθηκαν δεδομένα αναφοράς %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: λήφθηκαν δεδομένα αλλά λείπει η αναφορά (%s) ή pay_id (%s) ή " +"υπογραφή sha (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "Κωδικός" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Αποδέκτης Πληρωμής" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Πάροχος" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Κρυφό Κλειδί" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/en_GB.po b/addons/payment_buckaroo/i18n/en_GB.po new file mode 100644 index 00000000..f80d788c --- /dev/null +++ b/addons/payment_buckaroo/i18n/en_GB.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/eo.po b/addons/payment_buckaroo/i18n/eo.po new file mode 100644 index 00000000..3800b313 --- /dev/null +++ b/addons/payment_buckaroo/i18n/eo.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es.po b/addons/payment_buckaroo/i18n/es.po new file mode 100644 index 00000000..fe8c4d90 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; se encontró un pedido múltiple" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; pedido no encontrado" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Ogone: shasign no válido, recibido %s, calculado %s, para los datos %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Datos recibidos para la referencia %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Ogone: datos recibidos sin referencia (%s) or pay_id (%s) o shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pago" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Clave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Clave del website" diff --git a/addons/payment_buckaroo/i18n/es_BO.po b/addons/payment_buckaroo/i18n/es_BO.po new file mode 100644 index 00000000..1f276177 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_BO.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_CL.po b/addons/payment_buckaroo/i18n/es_CL.po new file mode 100644 index 00000000..a0465d2e --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_CL.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_CO.po b/addons/payment_buckaroo/i18n/es_CO.po new file mode 100644 index 00000000..2679de1b --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_CO.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_CR.po b/addons/payment_buckaroo/i18n/es_CR.po new file mode 100644 index 00000000..2477ec01 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_CR.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_DO.po b/addons/payment_buckaroo/i18n/es_DO.po new file mode 100644 index 00000000..0e345744 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_DO.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_EC.po b/addons/payment_buckaroo/i18n/es_EC.po new file mode 100644 index 00000000..f2810311 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_EC.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_MX.po b/addons/payment_buckaroo/i18n/es_MX.po new file mode 100644 index 00000000..c6c3c98b --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_MX.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; se encontró un pedido múltiple" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; pedido no encontrado" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Ogone: shasign no válido, recibido %s, calculado %s, para los datos %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Datos recibidos para la referencia %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Ogone: datos recibidos sin referencia (%s) or pay_id (%s) o shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pago" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Clave secreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Clave del website" diff --git a/addons/payment_buckaroo/i18n/es_PA.po b/addons/payment_buckaroo/i18n/es_PA.po new file mode 100644 index 00000000..fe5e3cab --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_PA.po @@ -0,0 +1,115 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-19 08:17+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/" +"language/es_PA/)\n" +"Language: es_PA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/buckaroo.py:150 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/buckaroo.py:148 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:payment.acquirer,cancel_msg:payment_buckaroo.payment_acquirer_buckaroo +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:payment.acquirer,done_msg:payment_buckaroo.payment_acquirer_buckaroo +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:payment.acquirer,error_msg:payment_buckaroo.payment_acquirer_buckaroo +msgid "" +"<span><i>Error,</i> Please be aware that an error occurred during the " +"transaction. The order has been confirmed but won't be paid. Don't hesitate " +"to contact us if you have any questions on the status of your order.</span>" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:payment.acquirer,pending_msg:payment_buckaroo.payment_acquirer_buckaroo +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_buckaroo +#: model:payment.acquirer,name:payment_buckaroo.payment_acquirer_buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/buckaroo.py:158 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/buckaroo.py:146 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/buckaroo.py:140 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:payment.acquirer,pre_msg:payment_buckaroo.payment_acquirer_buckaroo +msgid "" +"You will be redirected to the Buckaroo website after clicking on the payment " +"button." +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_PE.po b/addons/payment_buckaroo/i18n/es_PE.po new file mode 100644 index 00000000..5edaca56 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_PE.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_PY.po b/addons/payment_buckaroo/i18n/es_PY.po new file mode 100644 index 00000000..cff018d7 --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_PY.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/es_VE.po b/addons/payment_buckaroo/i18n/es_VE.po new file mode 100644 index 00000000..78cb3edd --- /dev/null +++ b/addons/payment_buckaroo/i18n/es_VE.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/et.po b/addons/payment_buckaroo/i18n/et.po new file mode 100644 index 00000000..d55774d4 --- /dev/null +++ b/addons/payment_buckaroo/i18n/et.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; multiple order found" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; no order found" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Makse saaja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Varustaja" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/eu.po b/addons/payment_buckaroo/i18n/eu.po new file mode 100644 index 00000000..8765fea7 --- /dev/null +++ b/addons/payment_buckaroo/i18n/eu.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ordainketa transakzioa" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Hornitzailea " + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/fa.po b/addons/payment_buckaroo/i18n/fa.po new file mode 100644 index 00000000..eddd0077 --- /dev/null +++ b/addons/payment_buckaroo/i18n/fa.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2018 +# Hamed Mohammadi <hamed@dehongi.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Last-Translator: Hamed Mohammadi <hamed@dehongi.com>, 2018\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "دریافت کننده پرداخت" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "فراهمکننده" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/fi.po b/addons/payment_buckaroo/i18n/fi.po new file mode 100644 index 00000000..61354e8d --- /dev/null +++ b/addons/payment_buckaroo/i18n/fi.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; useita tilauksia löytyi" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Maksun vastaanottaja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Palveluntarjoaja" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/fo.po b/addons/payment_buckaroo/i18n/fo.po new file mode 100644 index 00000000..13e29d12 --- /dev/null +++ b/addons/payment_buckaroo/i18n/fo.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/fr.po b/addons/payment_buckaroo/i18n/fr.po new file mode 100644 index 00000000..37bc2746 --- /dev/null +++ b/addons/payment_buckaroo/i18n/fr.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Frédéric GILSON <frederic.gilson@logicasoft.eu>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 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: Frédéric GILSON <frederic.gilson@logicasoft.eu>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; plusieurs commandes trouvées" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; aucune commande trouvée" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo : shasign incorrect, %s reçu, %s calculé, pour donnée %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo : données reçues pour la référence %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo : données reçues avec des références manquantes (%s) ou pay_id (%s)" +" ou shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermédiaire de paiement" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Transporteur" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/fr_CA.po b/addons/payment_buckaroo/i18n/fr_CA.po new file mode 100644 index 00000000..9ba79754 --- /dev/null +++ b/addons/payment_buckaroo/i18n/fr_CA.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/gl.po b/addons/payment_buckaroo/i18n/gl.po new file mode 100644 index 00000000..ba1e6950 --- /dev/null +++ b/addons/payment_buckaroo/i18n/gl.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/gu.po b/addons/payment_buckaroo/i18n/gu.po new file mode 100644 index 00000000..7a4b922b --- /dev/null +++ b/addons/payment_buckaroo/i18n/gu.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-08-02 09:56+0000\n" +"PO-Revision-Date: 2018-08-02 09:56+0000\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/he.po b/addons/payment_buckaroo/i18n/he.po new file mode 100644 index 00000000..00a4124a --- /dev/null +++ b/addons/payment_buckaroo/i18n/he.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "נמצאו הזמנות מרובות; " + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "לא נמצאה הזמנה; " + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "מזהה" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ספק שירות תשלומים" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "ספק" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/hi.po b/addons/payment_buckaroo/i18n/hi.po new file mode 100644 index 00000000..6a6d644e --- /dev/null +++ b/addons/payment_buckaroo/i18n/hi.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/hr.po b/addons/payment_buckaroo/i18n/hr.po new file mode 100644 index 00000000..38c9a9e7 --- /dev/null +++ b/addons/payment_buckaroo/i18n/hr.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Tina Milas, 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: Tina Milas, 2020\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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; pronađen višestruki nalog" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nema pronađenog naloga" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: zaprimljeni podaci za referencu %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Stjecatelj plaćanja" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Davatelj " + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "TajniKljuč" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Ključ webstranica" diff --git a/addons/payment_buckaroo/i18n/hu.po b/addons/payment_buckaroo/i18n/hu.po new file mode 100644 index 00000000..3c115c84 --- /dev/null +++ b/addons/payment_buckaroo/i18n/hu.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; többszörös rendelést talált" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nem talált rendelést" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Buckaroo: érvénytelen shasign ellenörzőkód, fogadott %s, kiszámított %s, " +"erre az adatra %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: fogadott adat a viszonyításhoz %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: fogadott adat elveszett hivatkozással (%s) vagy pay_id (%s) vagy " +"shasign ellenőrző kód (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "Azonosító" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Fizetési szolgáltató" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Szolgáltató" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "TitkosKlucs" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WeboldalKulcs" diff --git a/addons/payment_buckaroo/i18n/id.po b/addons/payment_buckaroo/i18n/id.po new file mode 100644 index 00000000..622dc436 --- /dev/null +++ b/addons/payment_buckaroo/i18n/id.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Bonny Useful <bonny.useful@gmail.com>, 2020 +# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; beberapa pesanan ditemukan" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pemilik Tagihan" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Pemberi" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/is.po b/addons/payment_buckaroo/i18n/is.po new file mode 100644 index 00000000..5db87ab3 --- /dev/null +++ b/addons/payment_buckaroo/i18n/is.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/it.po b/addons/payment_buckaroo/i18n/it.po new file mode 100644 index 00000000..86ef12c2 --- /dev/null +++ b/addons/payment_buckaroo/i18n/it.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Paolo Valier, 2020 +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; trovato ordine multiplo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nessun ordine trovato" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Buckaroo: shasign non valido, ricevuto %s, elaborato %s, per i dati %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: ricevuti dati con riferimento %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: ricevuti dati con riferimento (%s), pay_id (%s) o shasign (%s) " +"mancante" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sistema di pagamento" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornitore" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Chiave segreta" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Chiave sito web" diff --git a/addons/payment_buckaroo/i18n/ja.po b/addons/payment_buckaroo/i18n/ja.po new file mode 100644 index 00000000..a7d18c5f --- /dev/null +++ b/addons/payment_buckaroo/i18n/ja.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; 複数の注文が見つかりました" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; 注文が見つかりません" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "決済サービス" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "プロバイダ" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/ka.po b/addons/payment_buckaroo/i18n/ka.po new file mode 100644 index 00000000..74841729 --- /dev/null +++ b/addons/payment_buckaroo/i18n/ka.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "გადახდის ოპერატორი" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/kab.po b/addons/payment_buckaroo/i18n/kab.po new file mode 100644 index 00000000..69985a73 --- /dev/null +++ b/addons/payment_buckaroo/i18n/kab.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/km.po b/addons/payment_buckaroo/i18n/km.po new file mode 100644 index 00000000..934783e7 --- /dev/null +++ b/addons/payment_buckaroo/i18n/km.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Language-Team: 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/ko.po b/addons/payment_buckaroo/i18n/ko.po new file mode 100644 index 00000000..ff9ba325 --- /dev/null +++ b/addons/payment_buckaroo/i18n/ko.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; 다중 주문 발견" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; 주문이 없습니다" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo : 올바르지 않은 shasign, 수신된 %s, 계산된 %s, 다음의 데이터 %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo : 참조 %s에 대한 수신 데이터" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "Buckaroo : 누락된 참조(%s) 또는 pay_id (%s) 또는 shasign (%s)가 있는 수신 데이터" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "결제 매입사" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "결제 처리" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "공급업체" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "비밀키" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "웹사이트키" diff --git a/addons/payment_buckaroo/i18n/lb.po b/addons/payment_buckaroo/i18n/lb.po new file mode 100644 index 00000000..d09f8211 --- /dev/null +++ b/addons/payment_buckaroo/i18n/lb.po @@ -0,0 +1,78 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/lo.po b/addons/payment_buckaroo/i18n/lo.po new file mode 100644 index 00000000..ef8caa2a --- /dev/null +++ b/addons/payment_buckaroo/i18n/lo.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/lt.po b/addons/payment_buckaroo/i18n/lt.po new file mode 100644 index 00000000..77bb9846 --- /dev/null +++ b/addons/payment_buckaroo/i18n/lt.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; rasti keli užsakymai" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; užsakymų nerasta" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: negalimas shasign, gauta %s, suskaičiuota %s, duomenims %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: numeriui %s gauti duomenys" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: gauti duomenys su trūkstamu numeriu (%s) arba pay_id (%s) arba " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mokėjimo surinkėjas" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Tiekėjas" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/lv.po b/addons/payment_buckaroo/i18n/lv.po new file mode 100644 index 00000000..b01c287c --- /dev/null +++ b/addons/payment_buckaroo/i18n/lv.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/mk.po b/addons/payment_buckaroo/i18n/mk.po new file mode 100644 index 00000000..5699eafa --- /dev/null +++ b/addons/payment_buckaroo/i18n/mk.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/mn.po b/addons/payment_buckaroo/i18n/mn.po new file mode 100644 index 00000000..4710cb0d --- /dev/null +++ b/addons/payment_buckaroo/i18n/mn.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 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 Trigaux, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; олон захиалга олдлоо" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; захиалга олдсонгүй" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: буруу shasign, хүлээн авсан %s, тооцоолсон %s, %s өгөгдөлд" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: %s кодод хүлээн авсан өгөгдөл" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: хүлээн авсан өгөгдөлд код (%s) эсвэл pay_id (%s) эсвэл shasign " +"(%s) алга" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Төлбөрийн хэрэгсэл" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "НууцТүлхүүр" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "ВэбсайтТүлхүүр" diff --git a/addons/payment_buckaroo/i18n/nb.po b/addons/payment_buckaroo/i18n/nb.po new file mode 100644 index 00000000..8034b6c5 --- /dev/null +++ b/addons/payment_buckaroo/i18n/nb.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; flere ordrer funnet" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; ingen ordre funnet" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: Ugyldig shasign, mottatt %s, beregnet %s, for data %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: Mottatt data for referanse %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: Mottok data med manglende referanse (%s) eller pay_id (%s) eller " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsinnløser" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Innløser" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/ne.po b/addons/payment_buckaroo/i18n/ne.po new file mode 100644 index 00000000..64efb8df --- /dev/null +++ b/addons/payment_buckaroo/i18n/ne.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/nl.po b/addons/payment_buckaroo/i18n/nl.po new file mode 100644 index 00000000..ec104a61 --- /dev/null +++ b/addons/payment_buckaroo/i18n/nl.po @@ -0,0 +1,103 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; meerdere orders gevonden" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; geen order gevonden" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: ongeldig shasign, %s ontvangen, %s berekend voor data %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: data ontvangen voor referentie %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: data ontvangen zonder referentie (%s), pay_id (%s) of shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsprovider" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Geheime sleutel" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Websitesleutel" diff --git a/addons/payment_buckaroo/i18n/nl_BE.po b/addons/payment_buckaroo/i18n/nl_BE.po new file mode 100644 index 00000000..a6dae459 --- /dev/null +++ b/addons/payment_buckaroo/i18n/nl_BE.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/payment_buckaroo.pot b/addons/payment_buckaroo/i18n/payment_buckaroo.pot new file mode 100644 index 00000000..34656b17 --- /dev/null +++ b/addons/payment_buckaroo/i18n/payment_buckaroo.pot @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/pl.po b/addons/payment_buckaroo/i18n/pl.po new file mode 100644 index 00000000..6a343c11 --- /dev/null +++ b/addons/payment_buckaroo/i18n/pl.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Maja Stawicka <mjstwck@wp.pl>, 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: Maja Stawicka <mjstwck@wp.pl>, 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; znaleziono wielokrotne zamówienie" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nie znaleziono zamówienia" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: odebrane dane do odniesienia %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: odebrane dane z brakującą referencją (%s) lub pay_id (%s) lub " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Beneficjent płatności" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Dostawca" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Sekretny Klucz" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Klucz do strony" diff --git a/addons/payment_buckaroo/i18n/pt.po b/addons/payment_buckaroo/i18n/pt.po new file mode 100644 index 00000000..b6ab0805 --- /dev/null +++ b/addons/payment_buckaroo/i18n/pt.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; encontradas múltiplas encomendas" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; não foi encontrada nenhuma encomenda" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermediário de Pagamento" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provedor" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/pt_BR.po b/addons/payment_buckaroo/i18n/pt_BR.po new file mode 100644 index 00000000..6016ea92 --- /dev/null +++ b/addons/payment_buckaroo/i18n/pt_BR.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# Luiz Carlos de Lima <luiz.carlos@akretion.com.br>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@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: André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; múltiplas ordens encontradas" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nenhuma ordem encontrada" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: shasign inválida, recebido %s, processado %s, para %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: dados recebidos para referência %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: dados recebidos com referência (%s) faltando ou pay_id (%s) ou " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pagamento" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do Pagamento" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornecedor" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/ro.po b/addons/payment_buckaroo/i18n/ro.po new file mode 100644 index 00000000..6b146844 --- /dev/null +++ b/addons/payment_buckaroo/i18n/ro.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; s-au găsit mai multe rezultate" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nu a fost găsit nici un rezultat" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: Shasign nevalid, primit %s, calculat %s, pentru date %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: date primite pentru referință %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: date primite cu referință lipsă (%s) sau pay_id (%s) sau shasign " +"(%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Procesator Plată" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tranzacție plată" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Furnizor" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "CheieSecret" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "CheieWeb" diff --git a/addons/payment_buckaroo/i18n/ru.po b/addons/payment_buckaroo/i18n/ru.po new file mode 100644 index 00000000..4868562c --- /dev/null +++ b/addons/payment_buckaroo/i18n/ru.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev <yelizariev@it-projects.info>, 2020 +# ILMIR <karamov@it-projects.info>, 2020 +# Oleg Kuryan <oleg@ventor.tech>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; найден многократный заказ" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; заказ не найден" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Buckaroo: недопустимый shasign, получил %s, вычисленный %s, для данных %s " + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: полученные данные для ссылки %s " + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: получены данные с отсутствующей ссылкой (%s) или pay_id (%s) или " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "Идентификатор" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платежная система" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/si.po b/addons/payment_buckaroo/i18n/si.po new file mode 100644 index 00000000..442ce91c --- /dev/null +++ b/addons/payment_buckaroo/i18n/si.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/sk.po b/addons/payment_buckaroo/i18n/sk.po new file mode 100644 index 00000000..e57801a0 --- /dev/null +++ b/addons/payment_buckaroo/i18n/sk.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# 192015edb78c7397bdecc2172c7447b3, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; nájdená viacnásobná objednávka" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nenájdená žiadna objednávka" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: nesprávný shasign, obdržané %s, vyrátané %s pre dáta %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: obdržané dáta pre referenciu %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: obdržané dáta s chýbajucou referenciou (%s) alebo pay_id (%s) " +"alebo shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Príjemca platby " + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovateľ" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/sl.po b/addons/payment_buckaroo/i18n/sl.po new file mode 100644 index 00000000..33be2277 --- /dev/null +++ b/addons/payment_buckaroo/i18n/sl.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# Dejan Sraka <dejan.sraka@picolabs.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Jasmina Macur <jasmina@hbs.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: Jasmina Macur <jasmina@hbs.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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; več najdenih naročil" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; nobenega naročila ni bilo najdenega" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ponudnik plačilne storitve" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Ponudnik" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "Tajni ključ" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "Ključ spletne strani" diff --git a/addons/payment_buckaroo/i18n/sq.po b/addons/payment_buckaroo/i18n/sq.po new file mode 100644 index 00000000..cdb628cf --- /dev/null +++ b/addons/payment_buckaroo/i18n/sq.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/sr.po b/addons/payment_buckaroo/i18n/sr.po new file mode 100644 index 00000000..a5ee6117 --- /dev/null +++ b/addons/payment_buckaroo/i18n/sr.po @@ -0,0 +1,123 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-09-18 09:49+0000\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/sr@latin.po b/addons/payment_buckaroo/i18n/sr@latin.po new file mode 100644 index 00000000..13c1f888 --- /dev/null +++ b/addons/payment_buckaroo/i18n/sr@latin.po @@ -0,0 +1,73 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model_terms:ir.ui.view,arch_db:payment_buckaroo.acquirer_form_buckaroo +msgid "How to configure your Buckaroo account?" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer_brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/sv.po b/addons/payment_buckaroo/i18n/sv.po new file mode 100644 index 00000000..7a442de8 --- /dev/null +++ b/addons/payment_buckaroo/i18n/sv.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Kristoffer Grundström <lovaren@gmail.com>, 2021 +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; flerfaldig beställning funnen" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; ingen beställning funnen" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalnings Inlösare" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Leverantör" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/th.po b/addons/payment_buckaroo/i18n/th.po new file mode 100644 index 00000000..2817f52a --- /dev/null +++ b/addons/payment_buckaroo/i18n/th.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-18 09:49+0000\n" +"PO-Revision-Date: 2018-08-24 09:22+0000\n" +"Last-Translator: Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:141 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:139 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:148 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:137 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:131 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ผู้รับชำระ" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "ผู้ให้บริการ" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" + +#. module: payment_buckaroo +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/tr.po b/addons/payment_buckaroo/i18n/tr.po new file mode 100644 index 00000000..ec3ad402 --- /dev/null +++ b/addons/payment_buckaroo/i18n/tr.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2020 +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ahmet Altinisik <aaltinisik@altinkaya.com.tr>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; birden çok emir bulundu" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; sipariş bulunmadı" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: invalid shasign, received %s, computed %s, for data %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: received data for reference %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ödeme Alıcısı" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Sağlayıcı" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "GizliAnahtar" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteAnahtarı" diff --git a/addons/payment_buckaroo/i18n/uk.po b/addons/payment_buckaroo/i18n/uk.po new file mode 100644 index 00000000..ada5fbef --- /dev/null +++ b/addons/payment_buckaroo/i18n/uk.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@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: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2021\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; знайдено кілька замовлень" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; не знайдено жодного замовлення" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" +"Buckaroo: недійсний shasign, отриманий %s, обчислений %s, для даних %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: отримані дані для довідки %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: отримані дані з відсутньою довідкою (%s) або pay_id (%s) або " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платіжний еквайєр" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/ur.po b/addons/payment_buckaroo/i18n/ur.po new file mode 100644 index 00000000..f1ceff5b --- /dev/null +++ b/addons/payment_buckaroo/i18n/ur.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "" diff --git a/addons/payment_buckaroo/i18n/vi.po b/addons/payment_buckaroo/i18n/vi.po new file mode 100644 index 00000000..a3de3849 --- /dev/null +++ b/addons/payment_buckaroo/i18n/vi.po @@ -0,0 +1,105 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# 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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; thấy một số đơn hàng" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; không tìm thấy đơn hàng" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: invalid shasign, received %s, computed %s, for data %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: received data for reference %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "NCC dịch vụ Thanh toán" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "Nhà cung cấp" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "SecretKey" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "WebsiteKey" diff --git a/addons/payment_buckaroo/i18n/zh_CN.po b/addons/payment_buckaroo/i18n/zh_CN.po new file mode 100644 index 00000000..2a6c0945 --- /dev/null +++ b/addons/payment_buckaroo/i18n/zh_CN.po @@ -0,0 +1,104 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# guohuadeng <guohuadeng@hotmail.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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; 找到多个订单" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; 没有订单" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "牛仔" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: 错误 shasign,接收 %s, 计算 %s, 数据 %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: 接收到的数据供参照 %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "Buckaroo: 接收到的数据缺失参照 (%s) 或 pay_id (%s) 或 shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "支付收款" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "物流商" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "安全密钥" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "网站密钥" diff --git a/addons/payment_buckaroo/i18n/zh_TW.po b/addons/payment_buckaroo/i18n/zh_TW.po new file mode 100644 index 00000000..97f61ea9 --- /dev/null +++ b/addons/payment_buckaroo/i18n/zh_TW.po @@ -0,0 +1,101 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_buckaroo +# +# Translators: +# Martin Trigaux, 2020 +# 敬雲 林 <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_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "; 找到多個訂單" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "; 沒有找到訂單" + +#. module: payment_buckaroo +#: model:ir.model.fields.selection,name:payment_buckaroo.selection__payment_acquirer__provider__buckaroo +msgid "Buckaroo" +msgstr "Buckaroo" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: invalid shasign, received %s, computed %s, for data %s" +msgstr "Buckaroo: 錯誤 shasign,接收 %s, 計算 %s, 數據 %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "Buckaroo: received data for reference %s" +msgstr "Buckaroo: 接收到的數據供參照 %s" + +#. module: payment_buckaroo +#: code:addons/payment_buckaroo/models/payment.py:0 +#, python-format +msgid "" +"Buckaroo: received data with missing reference (%s) or pay_id (%s) or " +"shasign (%s)" +msgstr "Buckaroo: 接收到的數據缺失參照 (%s) 或 pay_id (%s) 或 shasign (%s)" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "付款收單方" + +#. module: payment_buckaroo +#: model:ir.model,name:payment_buckaroo.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__provider +msgid "Provider" +msgstr "服務商" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_secretkey +msgid "SecretKey" +msgstr "安全密鑰" + +#. module: payment_buckaroo +#: model:ir.model.fields,field_description:payment_buckaroo.field_payment_acquirer__brq_websitekey +msgid "WebsiteKey" +msgstr "網站密鑰" diff --git a/addons/payment_buckaroo/models/__init__.py b/addons/payment_buckaroo/models/__init__.py new file mode 100644 index 00000000..ef125336 --- /dev/null +++ b/addons/payment_buckaroo/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import payment diff --git a/addons/payment_buckaroo/models/payment.py b/addons/payment_buckaroo/models/payment.py new file mode 100644 index 00000000..8689cf5f --- /dev/null +++ b/addons/payment_buckaroo/models/payment.py @@ -0,0 +1,192 @@ +# coding: utf-8 +from hashlib import sha1 +import logging + +from werkzeug import urls + +from odoo import api, fields, models, _ +from odoo.addons.payment.models.payment_acquirer import ValidationError +from odoo.addons.payment_buckaroo.controllers.main import BuckarooController + +from odoo.tools.float_utils import float_compare + +_logger = logging.getLogger(__name__) + + +def normalize_keys_upper(data): + """Set all keys of a dictionnary to uppercase + + Buckaroo parameters names are case insensitive + convert everything to upper case to be able to easily detected the presence + of a parameter by checking the uppercase key only + """ + return {key.upper(): val for key, val in data.items()} + + +class AcquirerBuckaroo(models.Model): + _inherit = 'payment.acquirer' + + provider = fields.Selection(selection_add=[ + ('buckaroo', 'Buckaroo') + ], ondelete={'buckaroo': 'set default'}) + brq_websitekey = fields.Char('WebsiteKey', required_if_provider='buckaroo', groups='base.group_user') + brq_secretkey = fields.Char('SecretKey', required_if_provider='buckaroo', groups='base.group_user') + + def _get_buckaroo_urls(self, environment): + """ Buckaroo URLs + """ + if environment == 'prod': + return { + 'buckaroo_form_url': 'https://checkout.buckaroo.nl/html/', + } + else: + return { + 'buckaroo_form_url': 'https://testcheckout.buckaroo.nl/html/', + } + + def _buckaroo_generate_digital_sign(self, inout, values): + """ Generate the shasign for incoming or outgoing communications. + + :param browse acquirer: the payment.acquirer browse record. It should + have a shakey in shaky out + :param string inout: 'in' (odoo contacting buckaroo) or 'out' (buckaroo + contacting odoo). + :param dict values: transaction values + + :return string: shasign + """ + assert inout in ('in', 'out') + assert self.provider == 'buckaroo' + + keys = "add_returndata Brq_amount Brq_culture Brq_currency Brq_invoicenumber Brq_return Brq_returncancel Brq_returnerror Brq_returnreject brq_test Brq_websitekey".split() + + def get_value(key): + if values.get(key): + return values[key] + return '' + + values = dict(values or {}) + + if inout == 'out': + for key in list(values): + # case insensitive keys + if key.upper() == 'BRQ_SIGNATURE': + del values[key] + break + + items = sorted(values.items(), key=lambda pair: pair[0].lower()) + sign = ''.join('%s=%s' % (k, urls.url_unquote_plus(v)) for k, v in items) + else: + sign = ''.join('%s=%s' % (k, get_value(k)) for k in keys) + # Add the pre-shared secret key at the end of the signature + sign = sign + self.brq_secretkey + shasign = sha1(sign.encode('utf-8')).hexdigest() + return shasign + + def buckaroo_form_generate_values(self, values): + base_url = self.get_base_url() + buckaroo_tx_values = dict(values) + buckaroo_tx_values.update({ + 'Brq_websitekey': self.brq_websitekey, + 'Brq_amount': values['amount'], + 'Brq_currency': values['currency'] and values['currency'].name or '', + 'Brq_invoicenumber': values['reference'], + 'brq_test': True if self.state == 'test' else False, + 'Brq_return': urls.url_join(base_url, BuckarooController._return_url), + 'Brq_returncancel': urls.url_join(base_url, BuckarooController._cancel_url), + 'Brq_returnerror': urls.url_join(base_url, BuckarooController._exception_url), + 'Brq_returnreject': urls.url_join(base_url, BuckarooController._reject_url), + 'Brq_culture': (values.get('partner_lang') or 'en_US').replace('_', '-'), + 'add_returndata': buckaroo_tx_values.pop('return_url', '') or '', + }) + buckaroo_tx_values['Brq_signature'] = self._buckaroo_generate_digital_sign('in', buckaroo_tx_values) + return buckaroo_tx_values + + def buckaroo_get_form_action_url(self): + self.ensure_one() + environment = 'prod' if self.state == 'enabled' else 'test' + return self._get_buckaroo_urls(environment)['buckaroo_form_url'] + + +class TxBuckaroo(models.Model): + _inherit = 'payment.transaction' + + # buckaroo status + _buckaroo_valid_tx_status = [190] + _buckaroo_pending_tx_status = [790, 791, 792, 793] + _buckaroo_cancel_tx_status = [890, 891] + _buckaroo_error_tx_status = [490, 491, 492] + _buckaroo_reject_tx_status = [690] + + # -------------------------------------------------- + # FORM RELATED METHODS + # -------------------------------------------------- + + @api.model + def _buckaroo_form_get_tx_from_data(self, data): + """ Given a data dict coming from buckaroo, verify it and find the related + transaction record. """ + origin_data = dict(data) + data = normalize_keys_upper(data) + reference, pay_id, shasign = data.get('BRQ_INVOICENUMBER'), data.get('BRQ_PAYMENT'), data.get('BRQ_SIGNATURE') + if not reference or not pay_id or not shasign: + error_msg = _('Buckaroo: received data with missing reference (%s) or pay_id (%s) or shasign (%s)') % (reference, pay_id, shasign) + _logger.info(error_msg) + raise ValidationError(error_msg) + + tx = self.search([('reference', '=', reference)]) + if not tx or len(tx) > 1: + error_msg = _('Buckaroo: received data for reference %s') % (reference) + if not tx: + error_msg += _('; no order found') + else: + error_msg += _('; multiple order found') + _logger.info(error_msg) + raise ValidationError(error_msg) + + # verify shasign + shasign_check = tx.acquirer_id._buckaroo_generate_digital_sign('out', origin_data) + if shasign_check.upper() != shasign.upper(): + error_msg = _('Buckaroo: invalid shasign, received %s, computed %s, for data %s') % (shasign, shasign_check, data) + _logger.info(error_msg) + raise ValidationError(error_msg) + + return tx + + def _buckaroo_form_get_invalid_parameters(self, data): + invalid_parameters = [] + data = normalize_keys_upper(data) + if self.acquirer_reference and data.get('BRQ_TRANSACTIONS') != self.acquirer_reference: + invalid_parameters.append(('Transaction Id', data.get('BRQ_TRANSACTIONS'), self.acquirer_reference)) + # check what is buyed + if float_compare(float(data.get('BRQ_AMOUNT', '0.0')), self.amount, 2) != 0: + invalid_parameters.append(('Amount', data.get('BRQ_AMOUNT'), '%.2f' % self.amount)) + if data.get('BRQ_CURRENCY') != self.currency_id.name: + invalid_parameters.append(('Currency', data.get('BRQ_CURRENCY'), self.currency_id.name)) + + return invalid_parameters + + def _buckaroo_form_validate(self, data): + data = normalize_keys_upper(data) + status_code = int(data.get('BRQ_STATUSCODE', '0')) + if status_code in self._buckaroo_valid_tx_status: + self.write({'acquirer_reference': data.get('BRQ_TRANSACTIONS')}) + self._set_transaction_done() + return True + elif status_code in self._buckaroo_pending_tx_status: + self.write({'acquirer_reference': data.get('BRQ_TRANSACTIONS')}) + self._set_transaction_pending() + return True + elif status_code in self._buckaroo_cancel_tx_status: + self.write({'acquirer_reference': data.get('BRQ_TRANSACTIONS')}) + self._set_transaction_cancel() + return True + else: + error = 'Buckaroo: feedback error' + _logger.info(error) + self.write({ + 'state_message': error, + 'acquirer_reference': data.get('BRQ_TRANSACTIONS'), + }) + self._set_transaction_cancel() + return False diff --git a/addons/payment_buckaroo/static/description/icon.png b/addons/payment_buckaroo/static/description/icon.png Binary files differnew file mode 100644 index 00000000..b7ad04c3 --- /dev/null +++ b/addons/payment_buckaroo/static/description/icon.png diff --git a/addons/payment_buckaroo/static/description/icon.svg b/addons/payment_buckaroo/static/description/icon.svg new file mode 100644 index 00000000..1f21334c --- /dev/null +++ b/addons/payment_buckaroo/static/description/icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#CDC484"/><stop offset="100%" stop-color="#B5AA59"/></linearGradient><path id="d" d="M31.757 37.5L34 31h15.036v-3.212a.342.342 0 0 0-.339-.343H35l.92-2.742h13.116c1.5 0 2.714 1.228 2.714 2.742v20.11c0 1.514-1.213 2.742-2.714 2.742H21.964c-1.5 0-2.714-1.228-2.714-2.742 2.258.007 3.907.022 5.137 0h24.31a.342.342 0 0 0 .339-.343V37.5H31.757zM15.46 55.642h-1.036V55h2.833v.642h-1.037v2.832h-.76v-2.832zM17.423 55h1.07l.809 2.389h.01L20.075 55h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V55zM13 19h3.688l2.517 7.42h8.184L29.994 19H33l-8.76 26h-1.97L13 19zm7 11l2.964 9L26 30h-6z"/><path id="e" d="M31.757 35.5L34 29h15.036v-3.212a.342.342 0 0 0-.339-.343H35l.92-2.742h13.116c1.5 0 2.714 1.228 2.714 2.742v20.11c0 1.514-1.213 2.742-2.714 2.742H21.964c-1.5 0-2.714-1.228-2.714-2.742 2.258.007 3.907.022 5.137 0h24.31a.342.342 0 0 0 .339-.343V35.5H31.757zM15.46 53.642h-1.036V53h2.833v.642h-1.037v2.832h-.76v-2.832zM17.423 53h1.07l.809 2.389h.01L20.075 53h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V53zM13 17h3.688l2.517 7.42h8.184L29.994 17H33l-8.76 26h-1.97L13 17zm7 11l2.964 9L26 28h-6z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M4 69c-2 0-4-1-4-4V33.916l13.5-16.675L18.889 24l11.172-7 .967 5.703 4.533.036L48 23l3.576 1.968-.236 22.01L39.224 69H4z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
\ No newline at end of file diff --git a/addons/payment_buckaroo/static/src/img/buckaroo_icon.png b/addons/payment_buckaroo/static/src/img/buckaroo_icon.png Binary files differnew file mode 100644 index 00000000..819606db --- /dev/null +++ b/addons/payment_buckaroo/static/src/img/buckaroo_icon.png diff --git a/addons/payment_buckaroo/static/src/img/logo.png b/addons/payment_buckaroo/static/src/img/logo.png Binary files differnew file mode 100644 index 00000000..663fcad1 --- /dev/null +++ b/addons/payment_buckaroo/static/src/img/logo.png diff --git a/addons/payment_buckaroo/tests/__init__.py b/addons/payment_buckaroo/tests/__init__.py new file mode 100644 index 00000000..22dc419f --- /dev/null +++ b/addons/payment_buckaroo/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_buckaroo diff --git a/addons/payment_buckaroo/tests/test_buckaroo.py b/addons/payment_buckaroo/tests/test_buckaroo.py new file mode 100644 index 00000000..c516b779 --- /dev/null +++ b/addons/payment_buckaroo/tests/test_buckaroo.py @@ -0,0 +1,174 @@ +# -*- coding: utf-8 -*- + +from lxml import objectify +from werkzeug import urls + +import odoo +from odoo.addons.payment.models.payment_acquirer import ValidationError +from odoo.addons.payment.tests.common import PaymentAcquirerCommon +from odoo.addons.payment_buckaroo.controllers.main import BuckarooController +from odoo.tools import mute_logger + + +@odoo.tests.tagged('post_install', '-at_install', 'external', '-standard') +class BuckarooCommon(PaymentAcquirerCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + # get the buckaroo account + cls.buckaroo = cls.env.ref('payment.payment_acquirer_buckaroo') + cls.buckaroo.write({ + 'brq_websitekey': 'dummy', + 'brq_secretkey': 'dummy', + 'state': 'test', + }) + +@odoo.tests.tagged('post_install', '-at_install', 'external', '-standard') +class BuckarooForm(BuckarooCommon): + + def test_10_Buckaroo_form_render(self): + base_url = self.env['ir.config_parameter'].get_param('web.base.url') + # be sure not to do stupid things + self.assertEqual(self.buckaroo.state, 'test', 'test without test environment') + + # ---------------------------------------- + # Test: button direct rendering + # ---------------------------------------- + + form_values = { + 'add_returndata': '/payment/process', + 'Brq_websitekey': self.buckaroo.brq_websitekey, + 'Brq_amount': '2240.0', + 'Brq_currency': 'EUR', + 'Brq_invoicenumber': 'SO004', + 'Brq_signature': 'f09bb79451a7ddef3178462ea52b07e55d34e99e', # update me + 'brq_test': 'True', + 'Brq_return': urls.url_join(base_url, BuckarooController._return_url), + 'Brq_returncancel': urls.url_join(base_url, BuckarooController._cancel_url), + 'Brq_returnerror': urls.url_join(base_url, BuckarooController._exception_url), + 'Brq_returnreject': urls.url_join(base_url, BuckarooController._reject_url), + 'Brq_culture': 'en-US', + } + + # render the button + res = self.buckaroo.render( + 'SO004', 2240.0, self.currency_euro.id, + partner_id=None, + values=self.buyer_values) + # check form result + tree = objectify.fromstring(res) + data_set = tree.xpath("//input[@name='data_set']") + self.assertEqual(len(data_set), 1, 'paypal: Found %d "data_set" input instead of 1' % len(data_set)) + self.assertEqual(data_set[0].get('data-action-url'), 'https://testcheckout.buckaroo.nl/html/', 'Buckaroo: wrong form POST url') + for form_input in tree.input: + if form_input.get('name') in ['submit', 'data_set']: + continue + self.assertEqual( + form_input.get('value'), + form_values[form_input.get('name')], + 'Buckaroo: wrong value for input %s: received %s instead of %s' % (form_input.get('name'), form_input.get('value'), form_values[form_input.get('name')]) + ) + + # ---------------------------------------- + # Test2: button using tx + validation + # ---------------------------------------- + + # create a new draft tx + tx = self.env['payment.transaction'].create({ + 'amount': 2240.0, + 'acquirer_id': self.buckaroo.id, + 'currency_id': self.currency_euro.id, + 'reference': 'SO004', + 'partner_id': self.buyer_id, + }) + + # render the button + res = self.buckaroo.render( + 'should_be_erased', 2240.0, self.currency_euro, + partner_id=None, + values=self.buyer_values) + + # check form result + tree = objectify.fromstring(res) + data_set = tree.xpath("//input[@name='data_set']") + self.assertEqual(len(data_set), 1, 'paypal: Found %d "data_set" input instead of 1' % len(data_set)) + self.assertEqual(data_set[0].get('data-action-url'), 'https://testcheckout.buckaroo.nl/html/', 'Buckaroo: wrong form POST url') + for form_input in tree.input: + if form_input.get('name') in ['submit', 'data_set']: + continue + self.assertEqual( + form_input.get('value'), + form_values[form_input.get('name')], + 'Buckaroo: wrong value for form input %s: received %s instead of %s' % (form_input.get('name'), form_input.get('value'), form_values[form_input.get('name')]) + ) + + @mute_logger('odoo.addons.payment_buckaroo.models.payment', 'ValidationError') + def test_20_buckaroo_form_management(self): + # be sure not to do stupid thing + self.assertEqual(self.buckaroo.state, 'test', 'test without test environment') + + # typical data posted by buckaroo after client has successfully paid + buckaroo_post_data = { + 'BRQ_RETURNDATA': u'', + 'BRQ_AMOUNT': u'2240.00', + 'BRQ_CURRENCY': u'EUR', + 'BRQ_CUSTOMER_NAME': u'Jan de Tester', + 'BRQ_INVOICENUMBER': u'SO004', + 'brq_payment': u'573311D081B04069BD6336001611DBD4', + 'BRQ_PAYMENT_METHOD': u'paypal', + 'BRQ_SERVICE_PAYPAL_PAYERCOUNTRY': u'NL', + 'BRQ_SERVICE_PAYPAL_PAYEREMAIL': u'fhe@odoo.com', + 'BRQ_SERVICE_PAYPAL_PAYERFIRSTNAME': u'Jan', + 'BRQ_SERVICE_PAYPAL_PAYERLASTNAME': u'Tester', + 'BRQ_SERVICE_PAYPAL_PAYERMIDDLENAME': u'de', + 'BRQ_SERVICE_PAYPAL_PAYERSTATUS': u'verified', + 'Brq_signature': u'9e75e51cbcb6fbc798b40d1787cc5b7c36557d56', + 'BRQ_STATUSCODE': u'190', + 'BRQ_STATUSCODE_DETAIL': u'S001', + 'BRQ_STATUSMESSAGE': u'Transaction successfully processed', + 'BRQ_TEST': u'true', + 'BRQ_TIMESTAMP': u'2014-05-08 12:41:21', + 'BRQ_TRANSACTIONS': u'D6106678E1D54EEB8093F5B3AC42EA7B', + 'BRQ_WEBSITEKEY': u'5xTGyGyPyl', + } + + # should raise error about unknown tx + with self.assertRaises(ValidationError): + self.env['payment.transaction'].form_feedback(buckaroo_post_data, 'buckaroo') + + tx = self.env['payment.transaction'].create({ + 'amount': 2240.0, + 'acquirer_id': self.buckaroo.id, + 'currency_id': self.currency_euro.id, + 'reference': 'SO004', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + + # validate it + tx.form_feedback(buckaroo_post_data, 'buckaroo') + # check state + self.assertEqual(tx.state, 'done', 'Buckaroo: validation did not put tx into done state') + self.assertEqual(tx.acquirer_reference, buckaroo_post_data.get('BRQ_TRANSACTIONS'), 'Buckaroo: validation did not update tx payid') + + # reset tx + tx = self.env['payment.transaction'].create({ + 'amount': 2240.0, + 'acquirer_id': self.buckaroo.id, + 'currency_id': self.currency_euro.id, + 'reference': 'SO004-2', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + + buckaroo_post_data['BRQ_INVOICENUMBER'] = 'SO004-2' + # now buckaroo post is ok: try to modify the SHASIGN + buckaroo_post_data['Brq_signature'] = '54d928810e343acf5fb0c3ee75fd747ff159ef7a' + with self.assertRaises(ValidationError): + tx.form_feedback(buckaroo_post_data, 'buckaroo') + # simulate an error + buckaroo_post_data['BRQ_STATUSCODE'] = '2' + buckaroo_post_data['Brq_signature'] = '9138e2bf09a708a4eb485ce7777e5406898b689d' + tx.form_feedback(buckaroo_post_data, 'buckaroo') + + # check state + self.assertEqual(tx.state, 'cancel', 'Buckaroo: erroneous validation did not put tx into error state') diff --git a/addons/payment_buckaroo/views/payment_buckaroo_templates.xml b/addons/payment_buckaroo/views/payment_buckaroo_templates.xml new file mode 100644 index 00000000..7b074992 --- /dev/null +++ b/addons/payment_buckaroo/views/payment_buckaroo_templates.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <template id="buckaroo_form"> + <div> + <input type="hidden" name="data_set" t-att-data-action-url="tx_url" data-remove-me=""/> + <input type="hidden" name="Brq_websitekey" t-att-value="Brq_websitekey"/> + <input type="hidden" name="Brq_amount" t-att-value="Brq_amount"/> + <input type="hidden" name="Brq_currency" t-att-value="Brq_currency"/> + <input type="hidden" name="Brq_invoicenumber" t-att-value="Brq_invoicenumber"/> + <input type="hidden" name="Brq_signature" t-att-value="Brq_signature"/> + <input type="hidden" name="brq_test" t-att-value="brq_test"/> + <input type="hidden" name="Brq_culture" t-att-value="Brq_culture"/> + <!-- URLs --> + <input t-if="Brq_return" type="hidden" name='Brq_return' + t-att-value="Brq_return"/> + <input t-if="Brq_returncancel" type="hidden" name='Brq_returncancel' + t-att-value="Brq_returncancel"/> + <input t-if="Brq_returnerror" type="hidden" name='Brq_returnerror' + t-att-value="Brq_returnerror"/> + <input t-if="Brq_returnreject" type="hidden" name='Brq_returnreject' + t-att-value="Brq_returnreject"/> + <input type="hidden" name='add_returndata' t-att-value="add_returndata"/> + </div> + </template> + </data> +</odoo> diff --git a/addons/payment_buckaroo/views/payment_views.xml b/addons/payment_buckaroo/views/payment_views.xml new file mode 100644 index 00000000..0bc66e52 --- /dev/null +++ b/addons/payment_buckaroo/views/payment_views.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + + <record id="acquirer_form_buckaroo" model="ir.ui.view"> + <field name="name">acquirer.form.buckaroo</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', '!=', 'buckaroo')]}"> + <field name="brq_websitekey" attrs="{'required':[ ('provider', '=', 'buckaroo'), ('state', '!=', 'disabled')]}"/> + <field name="brq_secretkey" attrs="{'required':[ ('provider', '=', 'buckaroo'), ('state', '!=', 'disabled')]}"/> + </group> + </xpath> + </field> + </record> + + </data> +</odoo> |
