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_sips | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/payment_sips')
80 files changed, 7736 insertions, 0 deletions
diff --git a/addons/payment_sips/__init__.py b/addons/payment_sips/__init__.py new file mode 100644 index 00000000..0d6cb337 --- /dev/null +++ b/addons/payment_sips/__init__.py @@ -0,0 +1,7 @@ +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, 'sips') diff --git a/addons/payment_sips/__manifest__.py b/addons/payment_sips/__manifest__.py new file mode 100644 index 00000000..c67a0407 --- /dev/null +++ b/addons/payment_sips/__manifest__.py @@ -0,0 +1,29 @@ +# -*- encoding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +# Copyright 2015 Eezee-It + +{ + 'name': 'Worldline SIPS', + 'version': '1.1', + 'author': 'Eezee-It', + 'category': 'Accounting/Payment Acquirers', + 'sequence': 385, + 'description': """ +Worldline SIPS Payment Acquirer for online payments + +Implements the Worldline SIPS API for payment acquirers. +Other SIPS providers may be compatible, though this is +not guaranteed.""", + 'depends': ['payment'], + 'data': [ + 'views/payment_views.xml', + 'views/payment_sips_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_sips/controllers/__init__.py b/addons/payment_sips/controllers/__init__.py new file mode 100644 index 00000000..65a8c120 --- /dev/null +++ b/addons/payment_sips/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import main diff --git a/addons/payment_sips/controllers/main.py b/addons/payment_sips/controllers/main.py new file mode 100644 index 00000000..cf83c626 --- /dev/null +++ b/addons/payment_sips/controllers/main.py @@ -0,0 +1,56 @@ +# -*- coding: utf-8 -*- + +# Copyright 2015 Eezee-It + +import json +import logging +import pprint +import werkzeug + +from odoo import http +from odoo.http import request + +_logger = logging.getLogger(__name__) + + +class SipsController(http.Controller): + _notify_url = '/payment/sips/ipn/' + _return_url = '/payment/sips/dpn/' + + def sips_validate_data(self, **post): + sips = request.env['payment.acquirer'].search([('provider', '=', 'sips')], limit=1) + security = sips.sudo()._sips_generate_shasign(post) + if security == post['Seal']: + _logger.debug('Sips: validated data') + return request.env['payment.transaction'].sudo().form_feedback(post, 'sips') + _logger.warning('Sips: data are corrupted') + return False + + @http.route('/payment/sips/ipn/', type='http', auth='public', methods=['POST'], csrf=False) + def sips_ipn(self, **post): + """ Sips IPN. """ + _logger.info('Beginning Sips IPN form_feedback with post data %s', pprint.pformat(post)) # debug + if not post: + # SIPS sometimes sends empty notifications, the reason why is + # unclear but they tend to pollute logs and do not provide any + # meaningful information; log as a warning instead of a traceback + _logger.warning('Sips: received empty notification; skip.') + else: + self.sips_validate_data(**post) + return '' + + @http.route('/payment/sips/dpn', type='http', auth="public", methods=['POST'], csrf=False, save_session=False) + def sips_dpn(self, **post): + """ Sips DPN + The session cookie created by Odoo has not the attribute SameSite. Most of browsers will force this attribute + with the value 'Lax'. After the payment, Sips will perform a POST request on this route. For all these reasons, + the cookie won't be added to the request. As a result, if we want to save the session, the server will create + a new session cookie. Therefore, the previous session and all related information will be lost, so it will lead + to undesirable behaviors. This is the reason why `save_session=False` is needed. + """ + try: + _logger.info('Beginning Sips DPN form_feedback with post data %s', pprint.pformat(post)) # debug + self.sips_validate_data(**post) + except: + pass + return werkzeug.utils.redirect('/payment/process') diff --git a/addons/payment_sips/data/payment_acquirer_data.xml b/addons/payment_sips/data/payment_acquirer_data.xml new file mode 100644 index 00000000..f6a489c7 --- /dev/null +++ b/addons/payment_sips/data/payment_acquirer_data.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="0"> + + <record id="payment.payment_acquirer_sips" model="payment.acquirer"> + <field name="name">Sips</field> + <field name="image_128" type="base64" file="payment_sips/static/src/img/sips_icon.png"/> + <field name="provider">sips</field> + <field name="company_id" ref="base.main_company"/> + <field name="view_template_id" ref="payment_sips.sips_form"/> + </record> + + </data> +</odoo> diff --git a/addons/payment_sips/i18n/af.po b/addons/payment_sips/i18n/af.po new file mode 100644 index 00000000..edad7d94 --- /dev/null +++ b/addons/payment_sips/i18n/af.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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-11-12 09:36+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Afrikaans (http://www.transifex.com/odoo/odoo-9/language/" +"af/)\n" +"Language: af\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "<span><i>Kanselleer,</i> Jou betaling is gekanselleer.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" +"<span><i>Klaar,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" diff --git a/addons/payment_sips/i18n/ar.po b/addons/payment_sips/i18n/ar.po new file mode 100644 index 00000000..5d05decb --- /dev/null +++ b/addons/payment_sips/i18n/ar.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "خطأ بمزود معالج السداد" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "إصدار الواجهة" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "معرف التاجر" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "معالج السداد" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "رابط الإنتاج" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "المزود" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "مفتاح سري" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "رابط الاختبار" diff --git a/addons/payment_sips/i18n/az.po b/addons/payment_sips/i18n/az.po new file mode 100644 index 00000000..7a8146c8 --- /dev/null +++ b/addons/payment_sips/i18n/az.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/bg.po b/addons/payment_sips/i18n/bg.po new file mode 100644 index 00000000..947a8dfa --- /dev/null +++ b/addons/payment_sips/i18n/bg.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Некоректен доставчик на обработчик на плащане" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ИН на търговец" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Обработчик на плащане" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Доставчик" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Таен ключ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/bn.po b/addons/payment_sips/i18n/bn.po new file mode 100644 index 00000000..4937f0f5 --- /dev/null +++ b/addons/payment_sips/i18n/bn.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "আইডি " + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "পেমেন্ট অর্জিত" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "পেমেন্ট লেনদেন" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "গোপন চাবি" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/bs.po b/addons/payment_sips/i18n/bs.po new file mode 100644 index 00000000..5c9ec414 --- /dev/null +++ b/addons/payment_sips/i18n/bs.po @@ -0,0 +1,144 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Ručna konfiguracija" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Slipovi" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Žičani prenos" diff --git a/addons/payment_sips/i18n/ca.po b/addons/payment_sips/i18n/ca.po new file mode 100644 index 00000000..548d72b7 --- /dev/null +++ b/addons/payment_sips/i18n/ca.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Mètode de pagament incorrecte" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mètode de pagament" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveïdor" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/ckb.po b/addons/payment_sips/i18n/ckb.po new file mode 100644 index 00000000..4139df19 --- /dev/null +++ b/addons/payment_sips/i18n/ckb.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ناسنامە" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "پارەوەرگر" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/cs.po b/addons/payment_sips/i18n/cs.po new file mode 100644 index 00000000..2e16657d --- /dev/null +++ b/addons/payment_sips/i18n/cs.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# trendspotter, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: trendspotter, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Nesprávný poskytovatel platebního zprostředkovatele" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Platební brána" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Prodkční url" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovatel" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Tajný klíč" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Verze tajného klíče" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Testovací url" diff --git a/addons/payment_sips/i18n/da.po b/addons/payment_sips/i18n/da.po new file mode 100644 index 00000000..c9a1a07c --- /dev/null +++ b/addons/payment_sips/i18n/da.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 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 <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Valuta ikke understøttet af Wordline: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Forkert betalingsindløser" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Brugerflade version" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Sælger ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsindløser" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Produktions URL" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Udbyder" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Hemmelig nøgle" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Hemmelig Nøgle Udgave" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "Sips: Modtaget data for reference %s; ingen ordre fundet" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Test URL" diff --git a/addons/payment_sips/i18n/de.po b/addons/payment_sips/i18n/de.po new file mode 100644 index 00000000..77ed90d6 --- /dev/null +++ b/addons/payment_sips/i18n/de.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Chris Egal <sodaswed@web.de>, 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: Chris Egal <sodaswed@web.de>, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Ungültiger Zahlungsanbieter" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Schnittstellenversion" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Händler-ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Zahlungsanbieter" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Produktionsurl" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Anbieter" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Geheimer Schlüssel" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Test url" diff --git a/addons/payment_sips/i18n/el.po b/addons/payment_sips/i18n/el.po new file mode 100644 index 00000000..2a35b18d --- /dev/null +++ b/addons/payment_sips/i18n/el.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "Κωδικός" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Λανθασμένος πάροχος αποδέκτη πληρωμής" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Έκδοση Διεπαφής" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Αναγνωριστικό Εμπόρου" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Αποδέκτης Πληρωμής" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Πάροχος" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Κρυφό Κλειδί" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/en_GB.po b/addons/payment_sips/i18n/en_GB.po new file mode 100644 index 00000000..fe485fe9 --- /dev/null +++ b/addons/payment_sips/i18n/en_GB.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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:20+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/odoo/" +"odoo-9/language/en_GB/)\n" +"Language: en_GB\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_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Payment Transaction" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" diff --git a/addons/payment_sips/i18n/eo.po b/addons/payment_sips/i18n/eo.po new file mode 100644 index 00000000..157a53d4 --- /dev/null +++ b/addons/payment_sips/i18n/eo.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/es.po b/addons/payment_sips/i18n/es.po new file mode 100644 index 00000000..9aad9cd8 --- /dev/null +++ b/addons/payment_sips/i18n/es.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Wordline no acepta esta divisa: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Proveedor del medio de pago incorrecto" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Versión de la interfaz" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID de comerciante" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pago" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "URL de producción" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Contraseña secreta" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Versión de contrasela secreta" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" +"Sips: se recibieron los datos para la referencia %s; no se encontró ninguna " +"orden " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "URL de prueba" diff --git a/addons/payment_sips/i18n/es_CO.po b/addons/payment_sips/i18n/es_CO.po new file mode 100644 index 00000000..8322501e --- /dev/null +++ b/addons/payment_sips/i18n/es_CO.po @@ -0,0 +1,119 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# ANDRES FELIPE NEGRETE GOMEZ <psi@nubark.com>, 2016 +# Mateo Tibaquirá <nestormateo@gmail.com>, 2015 +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: 2016-02-18 13:31+0000\n" +"Last-Translator: Felipe Palomino <omega@nubark.com>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/odoo/odoo-9/" +"language/es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "; orden múltiple encontrada" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "; no se encontró la orden" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "<span><i>Cancelado,</i> Su pago ha sido cancelado.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" +"<span><i>Terminado,</i> Su pago en línea ha sido procesado exitosamente. " +"Gracias por su compra.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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 "" +"<span><i>Error,</i> considere por favor que ha ocurrido un error durante la " +"transacción. La orden ha sido confirmada pero no será pagada. No dude en " +"contactarnos si usted tiene alguna pregunta sobre el estado de su orden.</" +"span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" +"<span><i>Pendiente,</i> su pago en línea ha sido procesado " +"satisfactoriamente, pero su orden no ha sido validada todavía.</span>" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "Moneda no soportada por Wordline" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Provedor de gestión de pagos incorrecto" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Adquiridor del Pago" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción del Pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "Contraseña del Usuario de la API SIPS" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "Secreto SIPS" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "Sips: datos recibidos para la referencia %s" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" +"Usted será redirigido al sitio web de Sips después de pulsar el botón de " +"pagar." diff --git a/addons/payment_sips/i18n/es_DO.po b/addons/payment_sips/i18n/es_DO.po new file mode 100644 index 00000000..e7cc55c5 --- /dev/null +++ b/addons/payment_sips/i18n/es_DO.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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: 2016-05-18 23:43+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/odoo/" +"odoo-9/language/es_DO/)\n" +"Language: es_DO\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_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción del Pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" diff --git a/addons/payment_sips/i18n/es_EC.po b/addons/payment_sips/i18n/es_EC.po new file mode 100644 index 00000000..9ccd8919 --- /dev/null +++ b/addons/payment_sips/i18n/es_EC.po @@ -0,0 +1,118 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Rick Hunter <rick_hunter_ec@yahoo.com>, 2016 +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: 2016-01-28 02:44+0000\n" +"Last-Translator: Rick Hunter <rick_hunter_ec@yahoo.com>\n" +"Language-Team: Spanish (Ecuador) (http://www.transifex.com/odoo/odoo-9/" +"language/es_EC/)\n" +"Language: es_EC\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_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "; múltiple oferta encontrada " + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "; no se encontró orden" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "<span><i>Cancelad,</i> Su pago ha sido cancelado.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" +"<span><i>Aprobado,</i> su pago en línea ha sido porcesado " +"satisfactoriamente. Gracias por su orden.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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 "" +"<span><i>Error,</i> considere por favor que ha ocurrido un error durante la " +"transacción. La orden ha sido confirmada, pero no será pagada. No dude en " +"contactarnos si usted tiene alguna pregunta sobre el estado de su orden.</" +"span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" +"<span><i>Pendiente,</i> su orden ha sido procesada satisfactoriamente, pero " +"no ha sido validada satisfactoriamente.</span>" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "Moneda no soportada por Wordline" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Proveedor de método el pago incorrecto" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "API Usuario y Contraseña SIPS" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "Secreto SIPS" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "Sips: datos recibidos para referencia %s" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" +"Usted será redirigido a la página web Sips después de hacer clic en el botón " +"de pago." diff --git a/addons/payment_sips/i18n/es_MX.po b/addons/payment_sips/i18n/es_MX.po new file mode 100644 index 00000000..13d23bcc --- /dev/null +++ b/addons/payment_sips/i18n/es_MX.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Wordline no acepta esta divisa: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Proveedor del medio de pago incorrecto" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Versión de la interfaz" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID de comerciante" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "URL de producción" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Contraseña secreta" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Versión de contrasela secreta" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" +"Sips: se recibieron los datos para la referencia %s; no se encontró ninguna " +"orden " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "URL de prueba" diff --git a/addons/payment_sips/i18n/es_PA.po b/addons/payment_sips/i18n/es_PA.po new file mode 100644 index 00000000..414107ee --- /dev/null +++ b/addons/payment_sips/i18n/es_PA.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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:20+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_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" diff --git a/addons/payment_sips/i18n/es_PE.po b/addons/payment_sips/i18n/es_PE.po new file mode 100644 index 00000000..3eac2d0e --- /dev/null +++ b/addons/payment_sips/i18n/es_PE.po @@ -0,0 +1,117 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>, 2016 +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: 2016-06-16 14:35+0000\n" +"Last-Translator: Carlos Eduardo Rodriguez Rossi <crodriguez@samemotion.com>\n" +"Language-Team: Spanish (Peru) (http://www.transifex.com/odoo/odoo-9/language/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "; pedido múltiple encontrado" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "; pedido no encontrado" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "<span><i>Cancelar,</i> Su pago ha sido cancelado.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" +"<span><i>Realizado,</i> Su pago en línea ha sido procesado " +"satisfactoriamente. Gracias por su pedido.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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 "" +"<span><i>Error,</i> Por favor se notifica que ha ocurrido un error durante " +"la transacción. El pedido ha sido confirmado pero no será pagado. No dude en " +"contactarnos si tiene cualquier pregunta sobre el estado de su pedido.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" +"<span><i>Pendiente,</i> Su pago en línea ha sido procesado " +"satisfactoriamente. Pero su pedido aún no ha sido validado.</span>" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "Moneda no soportada por Worldline" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Pago incorrecto de proveedor adquiriente" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pago del Adquiriente" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de Pago" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "Contraseña de Usuario de API SIPS" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "Secreto SIPS" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "Sips: referencia de data recibida %s" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" +"Será redireccionado al sitio web de Sips después de hacer click en el botón " +"de pago." diff --git a/addons/payment_sips/i18n/et.po b/addons/payment_sips/i18n/et.po new file mode 100644 index 00000000..d63eeba7 --- /dev/null +++ b/addons/payment_sips/i18n/et.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Makse saaja" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Varustaja" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/eu.po b/addons/payment_sips/i18n/eu.po new file mode 100644 index 00000000..2dd2139c --- /dev/null +++ b/addons/payment_sips/i18n/eu.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ordainketa transakzioa" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Hornitzailea " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/fa.po b/addons/payment_sips/i18n/fa.po new file mode 100644 index 00000000..a4ce1852 --- /dev/null +++ b/addons/payment_sips/i18n/fa.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "دریافت کننده پرداخت" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "فراهمکننده" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/fi.po b/addons/payment_sips/i18n/fi.po new file mode 100644 index 00000000..a86c37bf --- /dev/null +++ b/addons/payment_sips/i18n/fi.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Maksun vastaanottaja" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Palveluntarjoaja" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/fr.po b/addons/payment_sips/i18n/fr.po new file mode 100644 index 00000000..8d577e4e --- /dev/null +++ b/addons/payment_sips/i18n/fr.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Eloïse Stilmant <est@odoo.com>, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Paiement incorrect vendeur fournisseur" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Version de l'interface" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Identifiant du marchand" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermédiaire de paiement" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "URL de Production" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Transporteur" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Clé secrète" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "URL de test" diff --git a/addons/payment_sips/i18n/gu.po b/addons/payment_sips/i18n/gu.po new file mode 100644 index 00000000..911b9e48 --- /dev/null +++ b/addons/payment_sips/i18n/gu.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/he.po b/addons/payment_sips/i18n/he.po new file mode 100644 index 00000000..48aeae05 --- /dev/null +++ b/addons/payment_sips/i18n/he.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "מזהה" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "מזהה סוחר" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ספק שירות תשלומים" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "ספק" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/hi.po b/addons/payment_sips/i18n/hi.po new file mode 100644 index 00000000..2873ff10 --- /dev/null +++ b/addons/payment_sips/i18n/hi.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/hr.po b/addons/payment_sips/i18n/hr.po new file mode 100644 index 00000000..c35e7e91 --- /dev/null +++ b/addons/payment_sips/i18n/hr.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 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: Karolina Tonković <karolina.tonkovic@storm.hr>, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Stjecatelj plaćanja" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Davatelj " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/hu.po b/addons/payment_sips/i18n/hu.po new file mode 100644 index 00000000..6b56936c --- /dev/null +++ b/addons/payment_sips/i18n/hu.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "Azonosító" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Nem megfelelő pénzügyi lebonyolító szolgáltató" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Kereskedelmi azonosító ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Fizetési szolgáltató" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Szolgáltató" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Titkos kulcs" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips fizetés" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/id.po b/addons/payment_sips/i18n/id.po new file mode 100644 index 00000000..dc93e5f1 --- /dev/null +++ b/addons/payment_sips/i18n/id.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pemilik Tagihan" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Pemberi" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/is.po b/addons/payment_sips/i18n/is.po new file mode 100644 index 00000000..a58cbc22 --- /dev/null +++ b/addons/payment_sips/i18n/is.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/it.po b/addons/payment_sips/i18n/it.po new file mode 100644 index 00000000..ee48657f --- /dev/null +++ b/addons/payment_sips/i18n/it.po @@ -0,0 +1,106 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Sergio Zanchetta <primes2h@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2020\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Valuta non gestita da Wordline: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Fornitore sistema di pagamento errato" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Versione interfaccia" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID commerciante" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sistema di pagamento" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "URL di produzione" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornitore" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Chiave segreta" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Versione chiave segreta" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "Sips: ricevuti dati con riferimento %s; nessun ordine trovato" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "URL di test" diff --git a/addons/payment_sips/i18n/ja.po b/addons/payment_sips/i18n/ja.po new file mode 100644 index 00000000..e159f642 --- /dev/null +++ b/addons/payment_sips/i18n/ja.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "マーチャントID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "決済サービス" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "プロバイダ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/ka.po b/addons/payment_sips/i18n/ka.po new file mode 100644 index 00000000..cd8e7ea2 --- /dev/null +++ b/addons/payment_sips/i18n/ka.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "გადახდის ოპერატორი" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/km.po b/addons/payment_sips/i18n/km.po new file mode 100644 index 00000000..6eda663c --- /dev/null +++ b/addons/payment_sips/i18n/km.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/ko.po b/addons/payment_sips/i18n/ko.po new file mode 100644 index 00000000..d65df66f --- /dev/null +++ b/addons/payment_sips/i18n/ko.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "잘못된 결제 매입사 제공 업체" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "인터페이스 버전" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "판매자 ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "결제 매입사" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "결제 처리" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "생산 URL" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "공급업체" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "비밀 키" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "시험 url" diff --git a/addons/payment_sips/i18n/lb.po b/addons/payment_sips/i18n/lb.po new file mode 100644 index 00000000..2b9b8f7f --- /dev/null +++ b/addons/payment_sips/i18n/lb.po @@ -0,0 +1,96 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" diff --git a/addons/payment_sips/i18n/lt.po b/addons/payment_sips/i18n/lt.po new file mode 100644 index 00000000..b0070b2e --- /dev/null +++ b/addons/payment_sips/i18n/lt.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Neteisingas mokėjimo surinkėjas" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Sąsajos versija" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Pardavėjo ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mokėjimo surinkėjas" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Gamybos URL" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Tiekėjas" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Slaptas raktas" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Testavimo URL" diff --git a/addons/payment_sips/i18n/lv.po b/addons/payment_sips/i18n/lv.po new file mode 100644 index 00000000..b08f9703 --- /dev/null +++ b/addons/payment_sips/i18n/lv.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/mk.po b/addons/payment_sips/i18n/mk.po new file mode 100644 index 00000000..0dad712c --- /dev/null +++ b/addons/payment_sips/i18n/mk.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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: 2016-04-20 11:07+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Macedonian (http://www.transifex.com/odoo/odoo-9/language/" +"mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:163 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:161 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,cancel_msg:payment_sips.payment_acquirer_sips +msgid "<span><i>Cancel,</i> Your payment has been cancelled.</span>" +msgstr "<span><i>Откажи,</i> Вашата наплата Ви беше откажана.</span>" + +#. module: payment_sips +#: model_terms:payment.acquirer,done_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Done,</i> Your online payment has been successfully processed. " +"Thank you for your order.</span>" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,error_msg:payment_sips.payment_acquirer_sips +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_sips +#: model_terms:payment.acquirer,pending_msg:payment_sips.payment_acquirer_sips +msgid "" +"<span><i>Pending,</i> Your online payment has been successfully processed. " +"But your order is not validated yet.</span>" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:84 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:65 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Стакнувач на плаќање" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Трансакција на плаќање" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "SIPS API User Password" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "SIPS Secret" +msgstr "" + +#. module: payment_sips +#: model:payment.acquirer,name:payment_sips.payment_acquirer_sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/sips.py:159 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model_terms:payment.acquirer,pre_msg:payment_sips.payment_acquirer_sips +msgid "" +"You will be redirected to the Sips website after clicking on payment button." +msgstr "" diff --git a/addons/payment_sips/i18n/mn.po b/addons/payment_sips/i18n/mn.po new file mode 100644 index 00000000..254be930 --- /dev/null +++ b/addons/payment_sips/i18n/mn.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# tserendavaa tsogtoo <tseegii011929@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: tserendavaa tsogtoo <tseegii011929@gmail.com>, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Буруу төлбөр хүлээн авагч" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Интерфейсийн хувилбар" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Худалдагчийн ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Төлбөрийн хэрэгсэл" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Үйлдвэрлэлийн хаяг" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Нууц түлхүүр" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Туршилтын url" diff --git a/addons/payment_sips/i18n/nb.po b/addons/payment_sips/i18n/nb.po new file mode 100644 index 00000000..dc722f2d --- /dev/null +++ b/addons/payment_sips/i18n/nb.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Tilbyder av betalingsløsning er ikke korrekt" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Grensesnittversjon" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsinnløser" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Innløser" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Hemmelig nøkkel" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/nl.po b/addons/payment_sips/i18n/nl.po new file mode 100644 index 00000000..e1a9db4c --- /dev/null +++ b/addons/payment_sips/i18n/nl.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Valuta wordt niet ondersteund door Worldline: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Onjuiste betalingsverwerker " + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Interface versie" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsprovider" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Productie URL" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Geheime sleutel" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Geheime sleutel versie" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "Sips: data ontvangen voor referentie %s; geen order gevonden" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Test URL" diff --git a/addons/payment_sips/i18n/payment_sips.pot b/addons/payment_sips/i18n/payment_sips.pot new file mode 100644 index 00000000..93773d74 --- /dev/null +++ b/addons/payment_sips/i18n/payment_sips.pot @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/pl.po b/addons/payment_sips/i18n/pl.po new file mode 100644 index 00000000..a3ba8e6f --- /dev/null +++ b/addons/payment_sips/i18n/pl.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Wersja interfejsu" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Merchant ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Beneficjent płatności" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Dostawca" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Sekretny klucz" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/pt.po b/addons/payment_sips/i18n/pt.po new file mode 100644 index 00000000..a01b7be7 --- /dev/null +++ b/addons/payment_sips/i18n/pt.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# cafonso <cafonso62@gmail.com>, 2020 +# c48d9e6f0d53f7afa4484fd46f953e4a_b05c777 <b89b26df936935dfaaba9a285ffbf73d_440731>, 2020 +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Fornecedor de método de pagamento incorreto" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Id. do Comerciante" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermediário de Pagamento" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provedor" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Chave secreta" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/pt_BR.po b/addons/payment_sips/i18n/pt_BR.po new file mode 100644 index 00000000..708d74a5 --- /dev/null +++ b/addons/payment_sips/i18n/pt_BR.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Provedor adquirente pagamento incorreto" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pagamento" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do Pagamento" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornecedor" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/ro.po b/addons/payment_sips/i18n/ro.po new file mode 100644 index 00000000..094aa5a6 --- /dev/null +++ b/addons/payment_sips/i18n/ro.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# Hongu Cosmin <cosmin513@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: Hongu Cosmin <cosmin513@gmail.com>, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Versiune Intefață" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Procesator Plată" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tranzacție plată" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "url producție" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Furnizor" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Cheie Secretă" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "url Test" diff --git a/addons/payment_sips/i18n/ru.po b/addons/payment_sips/i18n/ru.po new file mode 100644 index 00000000..9e9b13c4 --- /dev/null +++ b/addons/payment_sips/i18n/ru.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "Идентификатор" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Неправильный платеж провайдера покупателя" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "версия интерфейса" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID продавца" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платежная система" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "url производства" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Секретный ключ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "тест url" diff --git a/addons/payment_sips/i18n/si.po b/addons/payment_sips/i18n/si.po new file mode 100644 index 00000000..439db8c9 --- /dev/null +++ b/addons/payment_sips/i18n/si.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/sk.po b/addons/payment_sips/i18n/sk.po new file mode 100644 index 00000000..e7674d3a --- /dev/null +++ b/addons/payment_sips/i18n/sk.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# 192015edb78c7397bdecc2172c7447b3, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Nesprávny poskytovateľ platby nadobúdateľa" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID obchodníka" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Príjemca platby " + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovateľ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/sl.po b/addons/payment_sips/i18n/sl.po new file mode 100644 index 00000000..13c79cea --- /dev/null +++ b/addons/payment_sips/i18n/sl.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: matjaz k <matjaz@mentis.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ponudnik plačilne storitve" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Ponudnik" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/sr.po b/addons/payment_sips/i18n/sr.po new file mode 100644 index 00000000..f0d4f400 --- /dev/null +++ b/addons/payment_sips/i18n/sr.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/sr@latin.po b/addons/payment_sips/i18n/sr@latin.po new file mode 100644 index 00000000..ce2c0555 --- /dev/null +++ b/addons/payment_sips/i18n/sr@latin.po @@ -0,0 +1,86 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:153 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:151 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:74 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:55 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_prod_url +msgid "Prod's url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:149 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer_sips_test_url +msgid "Test's url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer_sips_merchant_id +msgid "Used for production only" +msgstr "" diff --git a/addons/payment_sips/i18n/sv.po b/addons/payment_sips/i18n/sv.po new file mode 100644 index 00000000..fd9d9267 --- /dev/null +++ b/addons/payment_sips/i18n/sv.po @@ -0,0 +1,109 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Daniel Forslund <daniel.forslund@gmail.com>, 2021 +# Simon Strömberg <simon.stromberg@vertel.se>, 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: Simon Strömberg <simon.stromberg@vertel.se>, 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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalningsförvärvare" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Leverantör" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/th.po b/addons/payment_sips/i18n/th.po new file mode 100644 index 00000000..bd602528 --- /dev/null +++ b/addons/payment_sips/i18n/th.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# 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_sips +#: code:addons/payment_sips/models/payment.py:164 +#, python-format +msgid "; multiple order found" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:162 +#, python-format +msgid "; no order found" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:75 +#, python-format +msgid "Currency not supported by Wordline" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:56 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ผู้รับชำระ" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "ผู้ให้บริการ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:160 +#, python-format +msgid "Sips: received data for reference %s" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,help:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Used for production only" +msgstr "" + +#. module: payment_sips +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_sips/i18n/tr.po b/addons/payment_sips/i18n/tr.po new file mode 100644 index 00000000..6ca7368c --- /dev/null +++ b/addons/payment_sips/i18n/tr.po @@ -0,0 +1,112 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Ediz Duman <neps1192@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Umur Akın <umura@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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Currency not supported by Wordline: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Yanlış ödeme alıcısı sağlayıcısı" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Arayüz Sürümü" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "Ticari ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ödeme Alıcısı" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Production url" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Sağlayıcı" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Gizli Şifre" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Secret Key Version" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "Sips: received data for reference %s; no order found" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Test url" diff --git a/addons/payment_sips/i18n/uk.po b/addons/payment_sips/i18n/uk.po new file mode 100644 index 00000000..8c8c6e9f --- /dev/null +++ b/addons/payment_sips/i18n/uk.po @@ -0,0 +1,107 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Неправильний постачальник платіжного доручення" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Версія інтерфейсу" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID продавця" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платіжний еквайєр" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "url виробництва" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Секретний ключ" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Тест url" diff --git a/addons/payment_sips/i18n/ur.po b/addons/payment_sips/i18n/ur.po new file mode 100644 index 00000000..c26e64ac --- /dev/null +++ b/addons/payment_sips/i18n/ur.po @@ -0,0 +1,102 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "" diff --git a/addons/payment_sips/i18n/vi.po b/addons/payment_sips/i18n/vi.po new file mode 100644 index 00000000..f34d7b33 --- /dev/null +++ b/addons/payment_sips/i18n/vi.po @@ -0,0 +1,110 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Trinh Tran Thi Phuong <trinhttp@trobz.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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "Currency not supported by Wordline: %s" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "Incorrect payment acquirer provider" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "Interface Version" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "ID người bán" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "NCC dịch vụ Thanh toán" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "Production url" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "Nhà cung cấp" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "Secret Key" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "Secret Key Version" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "Sips: received data for reference %s; no order found" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "Test url" diff --git a/addons/payment_sips/i18n/zh_CN.po b/addons/payment_sips/i18n/zh_CN.po new file mode 100644 index 00000000..f59794fa --- /dev/null +++ b/addons/payment_sips/i18n/zh_CN.po @@ -0,0 +1,111 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "付款收单方服务商不存在" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "接口版本" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "商家ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "支付收款" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "生产 url" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "物流商" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "密钥" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "少量" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "测试 url" diff --git a/addons/payment_sips/i18n/zh_TW.po b/addons/payment_sips/i18n/zh_TW.po new file mode 100644 index 00000000..ffeae557 --- /dev/null +++ b/addons/payment_sips/i18n/zh_TW.po @@ -0,0 +1,108 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_sips +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Martin Trigaux, 2020 +# sejun huang <sejun.huang@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: sejun huang <sejun.huang@gmail.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_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Currency not supported by Wordline: %s" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Incorrect payment acquirer provider" +msgstr "不正確的付款收單服務商" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_version +msgid "Interface Version" +msgstr "接口版本" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_sips.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_merchant_id +msgid "Merchant ID" +msgstr "商戶ID" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "付款收單方" + +#. module: payment_sips +#: model:ir.model,name:payment_sips.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_prod_url +msgid "Production url" +msgstr "製作網址" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__provider +msgid "Provider" +msgstr "服務商" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_secret +msgid "Secret Key" +msgstr "密鑰" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_key_version +msgid "Secret Key Version" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields.selection,name:payment_sips.selection__payment_acquirer__provider__sips +msgid "Sips" +msgstr "Sips" + +#. module: payment_sips +#: code:addons/payment_sips/models/payment.py:0 +#, python-format +msgid "Sips: received data for reference %s; no order found" +msgstr "" + +#. module: payment_sips +#: model:ir.model.fields,field_description:payment_sips.field_payment_acquirer__sips_test_url +msgid "Test url" +msgstr "測試網址" diff --git a/addons/payment_sips/models/__init__.py b/addons/payment_sips/models/__init__.py new file mode 100644 index 00000000..ef125336 --- /dev/null +++ b/addons/payment_sips/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import payment diff --git a/addons/payment_sips/models/const.py b/addons/payment_sips/models/const.py new file mode 100644 index 00000000..7c6dd937 --- /dev/null +++ b/addons/payment_sips/models/const.py @@ -0,0 +1,63 @@ + +from collections import namedtuple + +Currency = namedtuple('Currency', ['iso_id', 'decimal']) + +# ISO 4217 Data for currencies supported by sips +# NOTE: these are listed on the Atos Wordline SIPS POST documentation page +# at https://documentation.sips.worldline.com/en/WLSIPS.001-GD-Data-dictionary.html#Sips.001_DD_en-Value-currencyCode +# Yet with the simu environment, some of these currencies are *not* working +# I have no way to know if this is caused by the SIMU environment, or if it's +# the doc of SIPS that lists currencies that don't work, but since this list is +# restrictive, I'm gonna assume they are supported when using the right flow +# and payment methods, which may not work in SIMU... +# Since SIPS advises to use 'in production', well... +SIPS_SUPPORTED_CURRENCIES = { + 'ARS': Currency('032', 2), + 'AUD': Currency('036', 2), + 'BHD': Currency('048', 3), + 'KHR': Currency('116', 2), + 'CAD': Currency('124', 2), + 'LKR': Currency('144', 2), + 'CNY': Currency('156', 2), + 'HRK': Currency('191', 2), + 'CZK': Currency('203', 2), + 'DKK': Currency('208', 2), + 'HKD': Currency('344', 2), + 'HUF': Currency('348', 2), + 'ISK': Currency('352', 0), + 'INR': Currency('356', 2), + 'ILS': Currency('376', 2), + 'JPY': Currency('392', 0), + 'KRW': Currency('410', 0), + 'KWD': Currency('414', 3), + 'MYR': Currency('458', 2), + 'MUR': Currency('480', 2), + 'MXN': Currency('484', 2), + 'NPR': Currency('524', 2), + 'NZD': Currency('554', 2), + 'NOK': Currency('578', 2), + 'QAR': Currency('634', 2), + 'RUB': Currency('643', 2), + 'SAR': Currency('682', 2), + 'SGD': Currency('702', 2), + 'ZAR': Currency('710', 2), + 'SEK': Currency('752', 2), + 'CHF': Currency('756', 2), + 'THB': Currency('764', 2), + 'AED': Currency('784', 2), + 'TND': Currency('788', 3), + 'GBP': Currency('826', 2), + 'USD': Currency('840', 2), + 'TWD': Currency('901', 2), + 'RSD': Currency('941', 2), + 'RON': Currency('946', 2), + 'TRY': Currency('949', 2), + 'XOF': Currency('952', 0), + 'XPF': Currency('953', 0), + 'BGN': Currency('975', 2), + 'EUR': Currency('978', 2), + 'UAH': Currency('980', 2), + 'PLN': Currency('996', 2), + 'BRL': Currency('986', 2), +} diff --git a/addons/payment_sips/models/payment.py b/addons/payment_sips/models/payment.py new file mode 100644 index 00000000..979e002b --- /dev/null +++ b/addons/payment_sips/models/payment.py @@ -0,0 +1,215 @@ +# coding: utf-8 + +# Copyright 2015 Eezee-It + +import datetime +from dateutil import parser +import json +import logging +import pytz +import re +import time +from hashlib import sha256 + +from werkzeug import urls + +from odoo import models, fields, api +from odoo.tools.float_utils import float_compare +from odoo.tools.translate import _ +from odoo.addons.payment.models.payment_acquirer import ValidationError +from odoo.addons.payment_sips.controllers.main import SipsController + +from .const import SIPS_SUPPORTED_CURRENCIES + +_logger = logging.getLogger(__name__) + + +class AcquirerSips(models.Model): + _inherit = 'payment.acquirer' + + provider = fields.Selection(selection_add=[('sips', 'Sips')], ondelete={'sips': 'set default'}) + sips_merchant_id = fields.Char('Merchant ID', required_if_provider='sips', groups='base.group_user') + sips_secret = fields.Char('Secret Key', size=64, required_if_provider='sips', groups='base.group_user') + sips_test_url = fields.Char("Test url", required_if_provider='sips', default='https://payment-webinit.simu.sips-atos.com/paymentInit') + sips_prod_url = fields.Char("Production url", required_if_provider='sips', default='https://payment-webinit.sips-atos.com/paymentInit') + sips_version = fields.Char("Interface Version", required_if_provider='sips', default='HP_2.31') + sips_key_version = fields.Integer("Secret Key Version", required_if_provider='sips', default=2) + + def _sips_generate_shasign(self, values): + """ Generate the shasign for incoming or outgoing communications. + :param dict values: transaction values + :return string: shasign + """ + if self.provider != 'sips': + raise ValidationError(_('Incorrect payment acquirer provider')) + data = values['Data'] + key = self.sips_secret + + shasign = sha256((data + key).encode('utf-8')) + return shasign.hexdigest() + + def sips_form_generate_values(self, values): + self.ensure_one() + base_url = self.get_base_url() + currency = self.env['res.currency'].sudo().browse(values['currency_id']) + sips_currency = SIPS_SUPPORTED_CURRENCIES.get(currency.name) + if not sips_currency: + raise ValidationError(_('Currency not supported by Wordline: %s') % currency.name) + # rounded to its smallest unit, depends on the currency + amount = round(values['amount'] * (10 ** sips_currency.decimal)) + + sips_tx_values = dict(values) + data = { + 'amount': amount, + 'currencyCode': sips_currency.iso_id, + 'merchantId': self.sips_merchant_id, + 'normalReturnUrl': urls.url_join(base_url, SipsController._return_url), + 'automaticResponseUrl': urls.url_join(base_url, SipsController._notify_url), + 'transactionReference': values['reference'], + 'statementReference': values['reference'], + 'keyVersion': self.sips_key_version, + } + sips_tx_values.update({ + 'Data': '|'.join([f'{k}={v}' for k,v in data.items()]), + 'InterfaceVersion': self.sips_version, + }) + + return_context = {} + if sips_tx_values.get('return_url'): + return_context['return_url'] = urls.url_quote(sips_tx_values.get('return_url')) + return_context['reference'] = sips_tx_values['reference'] + sips_tx_values['Data'] += '|returnContext=%s' % (json.dumps(return_context)) + + shasign = self._sips_generate_shasign(sips_tx_values) + sips_tx_values['Seal'] = shasign + return sips_tx_values + + def sips_get_form_action_url(self): + self.ensure_one() + return self.sips_prod_url if self.state == 'enabled' else self.sips_test_url + + +class TxSips(models.Model): + _inherit = 'payment.transaction' + + _sips_valid_tx_status = ['00'] + _sips_wait_tx_status = ['90', '99'] + _sips_refused_tx_status = ['05', '14', '34', '54', '75', '97'] + _sips_error_tx_status = ['03', '12', '24', '25', '30', '40', '51', '63', '94'] + _sips_pending_tx_status = ['60'] + _sips_cancel_tx_status = ['17'] + + @api.model + def _compute_reference(self, values=None, prefix=None): + res = super()._compute_reference(values=values, prefix=prefix) + acquirer = self.env['payment.acquirer'].browse(values.get('acquirer_id')) + if acquirer and acquirer.provider == 'sips': + return re.sub(r'[^0-9a-zA-Z]+', 'x', res) + 'x' + str(int(time.time())) + return res + + # -------------------------------------------------- + # FORM RELATED METHODS + # -------------------------------------------------- + + def _sips_data_to_object(self, data): + res = {} + for element in data.split('|'): + (key, value) = element.split('=') + res[key] = value + return res + + @api.model + def _sips_form_get_tx_from_data(self, data): + """ Given a data dict coming from sips, verify it and find the related + transaction record. """ + + data = self._sips_data_to_object(data.get('Data')) + reference = data.get('transactionReference') + + if not reference: + return_context = json.loads(data.get('returnContext', '{}')) + reference = return_context.get('reference') + + payment_tx = self.search([('reference', '=', reference)]) + if not payment_tx: + error_msg = _('Sips: received data for reference %s; no order found') % reference + _logger.error(error_msg) + raise ValidationError(error_msg) + return payment_tx + + def _sips_form_get_invalid_parameters(self, data): + invalid_parameters = [] + + data = self._sips_data_to_object(data.get('Data')) + + # amounts should match + # get currency decimals from const + sips_currency = SIPS_SUPPORTED_CURRENCIES.get(self.currency_id.name) + # convert from int to float using decimals from currency + amount_converted = float(data.get('amount', '0.0')) / (10 ** sips_currency.decimal) + if float_compare(amount_converted, self.amount, sips_currency.decimal) != 0: + invalid_parameters.append(('amount', data.get('amount'), '%.2f' % self.amount)) + + return invalid_parameters + + def _sips_form_validate(self, data): + data = self._sips_data_to_object(data.get('Data')) + status = data.get('responseCode') + date = data.get('transactionDateTime') + if date: + try: + # dateutil.parser 2.5.3 and up should handle dates formatted as + # '2020-04-08T05:54:18+02:00', which strptime does not + # (+02:00 does not work as %z expects +0200 before Python 3.7) + # See odoo/odoo#49160 + date = parser.parse(date).astimezone(pytz.utc).replace(tzinfo=None) + except: + # fallback on now to avoid failing to register the payment + # because a provider formats their dates badly or because + # some library is not behaving + date = fields.Datetime.now() + data = { + 'acquirer_reference': data.get('transactionReference'), + 'date': date, + } + res = False + if status in self._sips_valid_tx_status: + msg = f'ref: {self.reference}, got valid response [{status}], set as done.' + _logger.info(msg) + data.update(state_message=msg) + self.write(data) + self._set_transaction_done() + res = True + elif status in self._sips_error_tx_status: + msg = f'ref: {self.reference}, got response [{status}], set as cancel.' + data.update(state_message=msg) + self.write(data) + self._set_transaction_cancel() + elif status in self._sips_wait_tx_status: + msg = f'ref: {self.reference}, got wait response [{status}], set as cancel.' + data.update(state_message=msg) + self.write(data) + self._set_transaction_cancel() + elif status in self._sips_refused_tx_status: + msg = f'ref: {self.reference}, got refused response [{status}], set as cancel.' + data.update(state_message=msg) + self.write(data) + self._set_transaction_cancel() + elif status in self._sips_pending_tx_status: + msg = f'ref: {self.reference}, got pending response [{status}], set as pending.' + data.update(state_message=msg) + self.write(data) + self._set_transaction_pending() + elif status in self._sips_cancel_tx_status: + msg = f'ref: {self.reference}, got cancel response [{status}], set as cancel.' + data.update(state_message=msg) + self.write(data) + self._set_transaction_cancel() + else: + msg = f'ref: {self.reference}, got unrecognized response [{status}], set as cancel.' + data.update(state_message=msg) + self.write(data) + self._set_transaction_cancel() + + _logger.info(msg) + return res diff --git a/addons/payment_sips/static/description/icon.png b/addons/payment_sips/static/description/icon.png Binary files differnew file mode 100644 index 00000000..4c03f776 --- /dev/null +++ b/addons/payment_sips/static/description/icon.png diff --git a/addons/payment_sips/static/description/icon.svg b/addons/payment_sips/static/description/icon.svg new file mode 100644 index 00000000..d8abf50b --- /dev/null +++ b/addons/payment_sips/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="#94B6C8"/><stop offset="100%" stop-color="#6A9EBA"/></linearGradient><path id="d" d="M19.25 43h2.714v4.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V37.5H32.732c1.623-2.333 2.212-4.5 1.768-6.5h14.536v-3.212a.342.342 0 0 0-.339-.343h-14.79a15.663 15.663 0 0 0-1.215-2.742h16.344c1.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.742V43zm-3.79 12.642h-1.037V55h2.833v.642h-1.037v2.832h-.76v-2.832zM17.422 55h1.07l.809 2.389h.01L20.075 55h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V55zm-1.394-16.606C15 37.5 14.5 37.025 13.733 35.448c-.556-1.144-.908-2.315-1.026-3.6-.035-.377-.04-1.232-.01-1.572.127-1.427.479-2.634 1.124-3.861a9.868 9.868 0 0 1 4.994-4.507c.24-.096.63-.236.637-.229a.859.859 0 0 1-.071.132c-.633 1.046-1.176 3.203-1.275 5.059l-.018.353-.115.162a6.324 6.324 0 0 0-1.094 2.865 9.018 9.018 0 0 0 0 1.521 6.257 6.257 0 0 0 1.208 3.02c.836 1.112 2.034 1.88 3.332 2.14.426.086.53.095 1.082.094.445 0 .547-.005.751-.038a5.349 5.349 0 0 0 2.003-.723c.116-.07.23-.14.252-.158l.041-.031-.092-.039a15.055 15.055 0 0 1-1.08-.556 9.864 9.864 0 0 1-3.215-3.084 9.796 9.796 0 0 1-.613-9.633c.095-.196.236-.466.313-.6.152-.265.535-.852.586-.896.078-.07 1.26-.095 1.865-.041a9.844 9.844 0 0 1 8.65 7.201c.254.942.352 1.744.334 2.764a8.847 8.847 0 0 1-.301 2.261c-.715 2.785-2.654 5.138-5.278 6.405a9.795 9.795 0 0 1-3.547.946 16.36 16.36 0 0 1-1.405-.002 9.878 9.878 0 0 1-5.736-2.407zM27.92 32.69c.022-.079.065-.272.097-.43a6.412 6.412 0 0 0-.299-3.548c-.64-1.645-1.91-2.891-3.508-3.446a1.81 1.81 0 0 0-.196-.06c-.044 0-.192.682-.25 1.148-.029.237-.029 1.131 0 1.37.155 1.251.585 2.3 1.327 3.232.16.201.553.607.747.772.553.47 1.12.796 1.808 1.04.111.04.21.071.219.069a.487.487 0 0 0 .055-.147z"/><path id="e" d="M19.25 42h2.714v3.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V35.5H32.732c1.623-2.333 2.212-4.5 1.768-6.5h14.536v-3.212a.342.342 0 0 0-.339-.343h-14.79a15.663 15.663 0 0 0-1.215-2.742h16.344c1.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.742V42zm-3.79 11.642h-1.037V53h2.833v.642h-1.037v2.832h-.76v-2.832zM17.422 53h1.07l.809 2.389h.01L20.075 53h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V53zm-1.394-16.606C15 35.5 14.5 35.025 13.733 33.448c-.556-1.144-.908-2.315-1.026-3.6-.035-.377-.04-1.232-.01-1.572.127-1.427.479-2.634 1.124-3.861a9.868 9.868 0 0 1 4.994-4.507c.24-.096.63-.236.637-.229a.859.859 0 0 1-.071.132c-.633 1.046-1.176 3.203-1.275 5.059l-.018.353-.115.162a6.324 6.324 0 0 0-1.094 2.865 9.018 9.018 0 0 0 0 1.521 6.257 6.257 0 0 0 1.208 3.02c.836 1.112 2.034 1.88 3.332 2.14.426.086.53.095 1.082.094.445 0 .547-.005.751-.038a5.349 5.349 0 0 0 2.003-.723c.116-.07.23-.14.252-.158l.041-.031-.092-.039a15.055 15.055 0 0 1-1.08-.556 9.864 9.864 0 0 1-3.215-3.084 9.796 9.796 0 0 1-.613-9.633c.095-.196.236-.466.313-.6.152-.265.535-.852.586-.896.078-.07 1.26-.095 1.865-.041a9.844 9.844 0 0 1 8.65 7.201c.254.942.352 1.744.334 2.764a8.847 8.847 0 0 1-.301 2.261c-.715 2.785-2.654 5.138-5.278 6.405a9.795 9.795 0 0 1-3.547.946 16.36 16.36 0 0 1-1.405-.002 9.878 9.878 0 0 1-5.736-2.407zM27.92 30.69c.022-.079.065-.272.097-.43a6.412 6.412 0 0 0-.299-3.548c-.64-1.645-1.91-2.891-3.508-3.446a1.81 1.81 0 0 0-.196-.06c-.044 0-.192.682-.25 1.148-.029.237-.029 1.131 0 1.37.155 1.251.585 2.3 1.327 3.232.16.201.553.607.747.772.553.47 1.12.796 1.808 1.04.111.04.21.071.219.069a.487.487 0 0 0 .055-.147z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M4 69c-2 0-4-1-4-4V33.916L16.034 21.5 18 21.197l3.6-1.697 7.4 3.203h8.25L48 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_sips/static/src/img/sips_icon.png b/addons/payment_sips/static/src/img/sips_icon.png Binary files differnew file mode 100644 index 00000000..f04253c3 --- /dev/null +++ b/addons/payment_sips/static/src/img/sips_icon.png diff --git a/addons/payment_sips/static/src/img/sips_logo.png b/addons/payment_sips/static/src/img/sips_logo.png Binary files differnew file mode 100644 index 00000000..f04253c3 --- /dev/null +++ b/addons/payment_sips/static/src/img/sips_logo.png diff --git a/addons/payment_sips/tests/__init__.py b/addons/payment_sips/tests/__init__.py new file mode 100644 index 00000000..70427147 --- /dev/null +++ b/addons/payment_sips/tests/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import test_sips diff --git a/addons/payment_sips/tests/test_sips.py b/addons/payment_sips/tests/test_sips.py new file mode 100644 index 00000000..3b0bd227 --- /dev/null +++ b/addons/payment_sips/tests/test_sips.py @@ -0,0 +1,139 @@ +# -*- coding: utf-8 -*- +from odoo.tests import tagged +from odoo.addons.payment.tests.common import PaymentAcquirerCommon + + +@tagged('post_install', '-at_install', '-standard', 'external') +class SipsTest(PaymentAcquirerCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + cls.sips = cls.env.ref('payment.payment_acquirer_sips') + cls.sips.write({ + 'state': 'test', + 'sips_merchant_id': 'dummy_mid', + 'sips_secret': 'dummy_secret', + }) + + def test_10_sips_form_render(self): + self.assertEqual(self.sips.state, 'test', 'test without test environment') + + # ---------------------------------------- + # Test: button direct rendering + # ---------------------------------------- + + # render the button + tx = self.env['payment.transaction'].create({ + 'acquirer_id': self.sips.id, + 'amount': 100.0, + 'reference': 'SO404', + 'currency_id': self.currency_euro.id, + }) + self.sips.render('SO404', 100.0, self.currency_euro.id, values=self.buyer_values).decode('utf-8') + + def test_20_sips_form_management(self): + self.assertEqual(self.sips.state, 'test', 'test without test environment') + + # typical data posted by Sips after client has successfully paid + sips_post_data = { + 'Data': 'captureDay=0|captureMode=AUTHOR_CAPTURE|currencyCode=840|' + 'merchantId=002001000000001|orderChannel=INTERNET|' + 'responseCode=00|transactionDateTime=2020-04-08T06:15:59+02:00|' + 'transactionReference=SO100x1|keyVersion=1|' + 'acquirerResponseCode=00|amount=31400|authorisationId=0020000006791167|' + 'paymentMeanBrand=IDEAL|paymentMeanType=CREDIT_TRANSFER|' + 'customerIpAddress=127.0.0.1|returnContext={"return_url": ' + '"/payment/process", "reference": ' + '"SO100x1"}|holderAuthentRelegation=N|holderAuthentStatus=|' + 'transactionOrigin=INTERNET|paymentPattern=ONE_SHOT|customerMobilePhone=null|' + 'mandateAuthentMethod=null|mandateUsage=null|transactionActors=null|' + 'mandateId=null|captureLimitDate=20200408|dccStatus=null|dccResponseCode=null|' + 'dccAmount=null|dccCurrencyCode=null|dccExchangeRate=null|' + 'dccExchangeRateValidity=null|dccProvider=null|' + 'statementReference=SO100x1|panEntryMode=MANUAL|walletType=null|' + 'holderAuthentMethod=NO_AUTHENT_METHOD', + 'Encode': '', + 'InterfaceVersion': 'HP_2.4', + 'Seal': 'f03f64da6f57c171904d12bf709b1d6d3385131ac914e97a7e1db075ed438f3e', + 'locale': 'en' + } + + tx = self.env['payment.transaction'].create({ + 'amount': 314.0, + 'acquirer_id': self.sips.id, + 'currency_id': self.currency_euro.id, + 'reference': 'SO100x1', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + + # validate it + tx.form_feedback(sips_post_data, 'sips') + self.assertEqual(tx.state, 'done', 'Sips: validation did not put tx into done state') + self.assertEqual(tx.acquirer_reference, 'SO100x1', 'Sips: validation did not update tx id') + + # same process for an payment in error on sips's end + sips_post_data = { + 'Data': 'captureDay=0|captureMode=AUTHOR_CAPTURE|currencyCode=840|' + 'merchantId=002001000000001|orderChannel=INTERNET|responseCode=12|' + 'transactionDateTime=2020-04-08T06:24:08+02:00|transactionReference=SO100x2|' + 'keyVersion=1|amount=31400|customerIpAddress=127.0.0.1|returnContext={"return_url": ' + '"/payment/process", "reference": ' + '"SO100x2"}|paymentPattern=ONE_SHOT|customerMobilePhone=null|mandateAuthentMethod=null|' + 'mandateUsage=null|transactionActors=null|mandateId=null|captureLimitDate=null|' + 'dccStatus=null|dccResponseCode=null|dccAmount=null|dccCurrencyCode=null|' + 'dccExchangeRate=null|dccExchangeRateValidity=null|dccProvider=null|' + 'statementReference=SO100x2|panEntryMode=null|walletType=null|holderAuthentMethod=null', + 'InterfaceVersion': 'HP_2.4', + 'Seal': '6e1995ea5432580860a04d8515b6eb1507996f97b3c5fa04fb6d9568121a16a2' + } + tx = self.env['payment.transaction'].create({ + 'amount': 314.0, + 'acquirer_id': self.sips.id, + 'currency_id': self.currency_euro.id, + 'reference': 'SO100x2', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + tx.form_feedback(sips_post_data, 'sips') + # check state + self.assertEqual(tx.state, 'cancel', 'Sips: erroneous validation did not put tx into error state') + + def test_30_sips_badly_formatted_date(self): + self.assertEqual(self.sips.state, 'test', 'test without test environment') + + # typical data posted by Sips after client has successfully paid + bad_date = '2020-04-08T06:15:59+56:00' + sips_post_data = { + 'Data': 'captureDay=0|captureMode=AUTHOR_CAPTURE|currencyCode=840|' + 'merchantId=002001000000001|orderChannel=INTERNET|' + 'responseCode=00|transactionDateTime=%s|' + 'transactionReference=SO100x1|keyVersion=1|' + 'acquirerResponseCode=00|amount=31400|authorisationId=0020000006791167|' + 'paymentMeanBrand=IDEAL|paymentMeanType=CREDIT_TRANSFER|' + 'customerIpAddress=127.0.0.1|returnContext={"return_url": ' + '"/payment/process", "reference": ' + '"SO100x1"}|holderAuthentRelegation=N|holderAuthentStatus=|' + 'transactionOrigin=INTERNET|paymentPattern=ONE_SHOT|customerMobilePhone=null|' + 'mandateAuthentMethod=null|mandateUsage=null|transactionActors=null|' + 'mandateId=null|captureLimitDate=20200408|dccStatus=null|dccResponseCode=null|' + 'dccAmount=null|dccCurrencyCode=null|dccExchangeRate=null|' + 'dccExchangeRateValidity=null|dccProvider=null|' + 'statementReference=SO100x1|panEntryMode=MANUAL|walletType=null|' + 'holderAuthentMethod=NO_AUTHENT_METHOD' % (bad_date,), + 'Encode': '', + 'InterfaceVersion': 'HP_2.4', + 'Seal': 'f03f64da6f57c171904d12bf709b1d6d3385131ac914e97a7e1db075ed438f3e', + 'locale': 'en' + } + + tx = self.env['payment.transaction'].create({ + 'amount': 314.0, + 'acquirer_id': self.sips.id, + 'currency_id': self.currency_euro.id, + 'reference': 'SO100x1', + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id}) + + # validate it + tx.form_feedback(sips_post_data, 'sips') + self.assertEqual(tx.state, 'done', 'Sips: validation did not put tx into done state when date format was weird') diff --git a/addons/payment_sips/views/payment_sips_templates.xml b/addons/payment_sips/views/payment_sips_templates.xml new file mode 100644 index 00000000..477bb964 --- /dev/null +++ b/addons/payment_sips/views/payment_sips_templates.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="0"> + <template id="sips_form"> + <input type="hidden" name="data_set" t-att-data-action-url="tx_url" data-remove-me=""/> + <input type="hidden" name="Data" t-att-value="Data"/> + <input type="hidden" name="InterfaceVersion" t-att-value="InterfaceVersion"/> + <input type="hidden" name="Seal" t-att-value="Seal"/> + </template> + </data> +</odoo> diff --git a/addons/payment_sips/views/payment_views.xml b/addons/payment_sips/views/payment_views.xml new file mode 100644 index 00000000..633da7e5 --- /dev/null +++ b/addons/payment_sips/views/payment_views.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + + <record id="acquirer_form_sips" model="ir.ui.view"> + <field name="name">acquirer.form.sips</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', '!=', 'sips')]}"> + <field name="sips_merchant_id" attrs="{'required':[ ('provider', '=', 'sips'), ('state', '!=', 'disabled')]}"/> + <field name="sips_secret" attrs="{'required':[ ('provider', '=', 'sips'), ('state', '!=', 'disabled')]}"/> + <field name="sips_test_url" attrs="{'required':[ ('provider', '=', 'sips'), ('state', '!=', 'disabled')]}" groups='base.group_no_one'/> + <field name="sips_prod_url" attrs="{'required':[ ('provider', '=', 'sips'), ('state', '!=', 'disabled')]}" groups='base.group_no_one'/> + <field name="sips_version" attrs="{'required':[ ('provider', '=', 'sips'), ('state', '!=', 'disabled')]}" /> + <field name="sips_key_version" attrs="{'required':[ ('provider', '=', 'sips'), ('state', '!=', 'disabled')]}" /> + </group> + </xpath> + </field> + </record> + + </data> +</odoo> |
