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_stripe | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/payment_stripe')
75 files changed, 13164 insertions, 0 deletions
diff --git a/addons/payment_stripe/__init__.py b/addons/payment_stripe/__init__.py new file mode 100644 index 00000000..cb4afd41 --- /dev/null +++ b/addons/payment_stripe/__init__.py @@ -0,0 +1,10 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import controllers +from odoo.addons.payment.models.payment_acquirer import create_missing_journal_for_acquirers +from odoo.addons.payment import reset_payment_provider + +def uninstall_hook(cr, registry): + reset_payment_provider(cr, registry, 'stripe') diff --git a/addons/payment_stripe/__manifest__.py b/addons/payment_stripe/__manifest__.py new file mode 100644 index 00000000..f40ef18d --- /dev/null +++ b/addons/payment_stripe/__manifest__.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- + +{ + 'name': 'Stripe Payment Acquirer', + 'category': 'Accounting/Payment Acquirers', + 'sequence': 380, + 'summary': 'Payment Acquirer: Stripe Implementation', + 'version': '1.0', + 'description': """Stripe Payment Acquirer""", + 'depends': ['payment'], + 'data': [ + 'views/payment_views.xml', + 'views/payment_stripe_templates.xml', + 'data/payment_acquirer_data.xml', + ], + 'images': ['static/description/icon.png'], + 'installable': True, + 'application': True, + 'post_init_hook': 'create_missing_journal_for_acquirers', + 'uninstall_hook': 'uninstall_hook', + 'license': 'LGPL-3', +} diff --git a/addons/payment_stripe/controllers/__init__.py b/addons/payment_stripe/controllers/__init__.py new file mode 100644 index 00000000..65a8c120 --- /dev/null +++ b/addons/payment_stripe/controllers/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import main diff --git a/addons/payment_stripe/controllers/main.py b/addons/payment_stripe/controllers/main.py new file mode 100644 index 00000000..763a4d05 --- /dev/null +++ b/addons/payment_stripe/controllers/main.py @@ -0,0 +1,62 @@ +# -*- coding: utf-8 -*- +import json +import logging +import pprint +import werkzeug + +from odoo import http +from odoo.http import request + +_logger = logging.getLogger(__name__) + + +class StripeController(http.Controller): + _success_url = '/payment/stripe/success' + _cancel_url = '/payment/stripe/cancel' + + @http.route(['/payment/stripe/success', '/payment/stripe/cancel'], type='http', auth='public') + def stripe_success(self, **kwargs): + request.env['payment.transaction'].sudo().form_feedback(kwargs, 'stripe') + return werkzeug.utils.redirect('/payment/process') + + @http.route(['/payment/stripe/s2s/create_json_3ds'], type='json', auth='public', csrf=False) + def stripe_s2s_create_json_3ds(self, verify_validity=False, **kwargs): + if not kwargs.get('partner_id'): + kwargs = dict(kwargs, partner_id=request.env.user.partner_id.id) + token = request.env['payment.acquirer'].browse(int(kwargs.get('acquirer_id'))).with_context(stripe_manual_payment=True).s2s_process(kwargs) + + if not token: + res = { + 'result': False, + } + return res + + res = { + 'result': True, + 'id': token.id, + 'short_name': token.short_name, + '3d_secure': False, + 'verified': False, + } + + if verify_validity != False: + token.validate() + res['verified'] = token.verified + + return res + + @http.route('/payment/stripe/s2s/create_setup_intent', type='json', auth='public', csrf=False) + def stripe_s2s_create_setup_intent(self, acquirer_id, **kwargs): + acquirer = request.env['payment.acquirer'].browse(int(acquirer_id)) + res = acquirer.with_context(stripe_manual_payment=True)._create_setup_intent(kwargs) + return res.get('client_secret') + + @http.route('/payment/stripe/s2s/process_payment_intent', type='json', auth='public', csrf=False) + def stripe_s2s_process_payment_intent(self, **post): + return request.env['payment.transaction'].sudo().form_feedback(post, 'stripe') + + @http.route('/payment/stripe/webhook', type='json', auth='public', csrf=False) + def stripe_webhook(self, **kwargs): + data = json.loads(request.httprequest.data) + request.env['payment.acquirer'].sudo()._handle_stripe_webhook(data) + return 'OK'
\ No newline at end of file diff --git a/addons/payment_stripe/data/payment_acquirer_data.xml b/addons/payment_stripe/data/payment_acquirer_data.xml new file mode 100644 index 00000000..2aeeb9d8 --- /dev/null +++ b/addons/payment_stripe/data/payment_acquirer_data.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + <record id="payment.payment_acquirer_stripe" model="payment.acquirer"> + <field name="name">Stripe</field> + <field name="image_128" type="base64" file="payment_stripe/static/src/img/stripe_icon.png"/> + <field name="provider">stripe</field> + <field name="company_id" ref="base.main_company"/> + <field name="view_template_id" ref="stripe_form"/> + <field name="registration_view_template_id" ref="stripe_s2s_form"/> + </record> + </data> +</odoo> diff --git a/addons/payment_stripe/i18n/ar.po b/addons/payment_stripe/i18n/ar.po new file mode 100644 index 00000000..14a21409 --- /dev/null +++ b/addons/payment_stripe/i18n/ar.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# Yihya Hugirat <hugirat@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: Yihya Hugirat <hugirat@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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"رابط ويب نسبي أو مطلق يشير لصورة مربعة لعلامتك التجارية أو منتجك. كما قمت " +"بتعريفه في ملفك الشخصي على Stripe. راجع: https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "رابط صورة تسجيل الخروج" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "اغلاق" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "خطأ" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "المُعرف" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "معالج السداد" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "كلمة سر السداد" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "معاملة السداد" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "خطأ في عملية السداد" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"ربما يمكن حل المشكلة بالتحقق من بيانات بطاقتك الائتمانية، أو التواصل مع " +"البنك؟" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "المزود" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "مفتاح Stripe القابل للنشر" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "مفتاح Stripe السري" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "أرسل إلينا Stripe هذه المعلومات عن المشكلة: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: لم يُعثر على طلبات لرقم الإشارة %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "نأسف لإبلاغكم بفشل المعاملة." diff --git a/addons/payment_stripe/i18n/az.po b/addons/payment_stripe/i18n/az.po new file mode 100644 index 00000000..d7d3a704 --- /dev/null +++ b/addons/payment_stripe/i18n/az.po @@ -0,0 +1,196 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_stripe/i18n/bg.po b/addons/payment_stripe/i18n/bg.po new file mode 100644 index 00000000..4fee2556 --- /dev/null +++ b/addons/payment_stripe/i18n/bg.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Kaloyan Naumov <kaloyan@lumnus.net>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Относителен или абсолютен URL адрес, насочен към квадратно изображение на " +"Вашата марка или продукт. Както е определен в профила Ви в Stripe. Вижте: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL адрес на изображение за отписване" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Затвори" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Грешка" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Обработчик на плащане" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Платежен токен" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платежна транзакция" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Грешка при плащане" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Доставчик" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: не е намерена поръчка за референция %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/bn.po b/addons/payment_stripe/i18n/bn.po new file mode 100644 index 00000000..2ae89942 --- /dev/null +++ b/addons/payment_stripe/i18n/bn.po @@ -0,0 +1,208 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "&বার;" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "বদ্ধ" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "ত্রুটি" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "আইডি " + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "পেমেন্ট অর্জিত" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "পেমেন্ট লেনদেন" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/bs.po b/addons/payment_stripe/i18n/bs.po new file mode 100644 index 00000000..29598b86 --- /dev/null +++ b/addons/payment_stripe/i18n/bs.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +# Bojan Vrućinić <bojan.vrucinic@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Bojan Vrućinić <bojan.vrucinic@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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "Ručna konfiguracija" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sticaoc plaćanja" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token plaćanja" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provajder" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "Slipovi" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "Žičani prenos" diff --git a/addons/payment_stripe/i18n/ca.po b/addons/payment_stripe/i18n/ca.po new file mode 100644 index 00000000..1e841e5c --- /dev/null +++ b/addons/payment_stripe/i18n/ca.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# Martin Trigaux, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Tancar" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pagament de compradors" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token de pagament" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacció de pagament" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveïdor" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/ckb.po b/addons/payment_stripe/i18n/ckb.po new file mode 100644 index 00000000..f54948b7 --- /dev/null +++ b/addons/payment_stripe/i18n/ckb.po @@ -0,0 +1,210 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" +"×\n" +" " + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "داخستن" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "هەڵە" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ناسنامە" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "پارەوەرگر" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/cs.po b/addons/payment_stripe/i18n/cs.po new file mode 100644 index 00000000..cec98b5d --- /dev/null +++ b/addons/payment_stripe/i18n/cs.po @@ -0,0 +1,222 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2021 +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Relativní nebo absolutní adresa URL ukazující na čtvercový obrázek vaší " +"značky nebo produktu. Jak je definováno ve vašem profilu Stripe. Viz: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL obrázku k pokladně" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Zavřít" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Chyba" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Pokud povolíte webhooky, toto tajemství se použije k ověření elektronického " +"podpisu událostí odeslaných Stripe do Odoo. Pokud toto pole v Odoo " +"nenastavíte, systém webhooku pro tohoto nabyvatele se úplně deaktivuje." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Ještě vteřinku, přesměrujeme vás na Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Platební brána" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "ID platebních podmínek" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Platební token" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platební transakce" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Chyba platby" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Možná lze problém vyřešit pečlivou kontrolou údajů na kreditní kartě nebo " +"kontaktováním banky." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovatel" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Stripe Payment Intent ID" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Stripe Payment Intent Secret" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Publikovatelný klíč Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Secret Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Stripe Webhook Secret" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: nebyla nalezena žádná objednávka pro referenci %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Nelze převést zákazníka Stripe na kompatibilitu SCA. Existuje pro tohoto " +"zákazníka v backendu Stripe alespoň jedna karta?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Kartu nelze uložit" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "V tuto chvíli nemůžeme přidat vaši platební podmínku." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Je nám líto, ale oznamujeme, že transakce selhala." diff --git a/addons/payment_stripe/i18n/da.po b/addons/payment_stripe/i18n/da.po new file mode 100644 index 00000000..499418dd --- /dev/null +++ b/addons/payment_stripe/i18n/da.po @@ -0,0 +1,226 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# Martin Trigaux, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"En relativ eller absolut URL der peger på et firkantet billede af dit mærke " +"eller produkt. Som defineret i din Stripe profil. Se: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Betalings billede URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Luk" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Fejl" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Hvis du aktiverer webhooks, bruges denne hemmelighed til at verificere den " +"elektroniske signatur for begivenheder sendt til Stripe fra Odoo. Manglende " +"angivelse af dette felt i Odoo vil deaktivere webhook systemet og denne " +"erhverver helt." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Bare ét mere sekund, vi omdirigerer dig til Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsindløser" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "Betalingsmetode ID" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Betalingstoken" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaktion" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Betalingsfejl" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Måske kan problemet løses ved at doblet-tjekke dine kreditkort oplysninger, " +"eller ved at kontakte din bank?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Udbyder" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stribe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Stripe betalingsformål ID" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Strip Betalingsformål hemmelig" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe offentliggørelse af nøgle" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Strip hemmelig nøgle" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Stripe Webhook Hemmelighed" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe gav os følgende informationer om problemet: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: %(count)s ordre fundet for reference %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: Ingen ordre fundet for reference %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Kunne ikke omdanne Stripe kunde for SCA kompatibilitet. Er der mindst ét " +"kort for denne kunde i Stripe back-end'en? " + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Kunne ikke gemme kort" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "Vi er ikke i stand til at tilføje din betalingsmetode i øjeblikket." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Vi beklager at måtte meddele at transaktionen mislykkedes." diff --git a/addons/payment_stripe/i18n/de.po b/addons/payment_stripe/i18n/de.po new file mode 100644 index 00000000..a9aee9c9 --- /dev/null +++ b/addons/payment_stripe/i18n/de.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# JEK Odoo <jek@odoo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: JEK Odoo <jek@odoo.com>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Eine relative oder absolute URL weist auf ein quadratisches Bild Ihrer Marke" +" oder Produkt hin. Wie in Ihrem Stripe-Profil definiert. Siehe: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Abmelde-Bild-URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Schließen" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Fehler" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Zahlungsanbieter" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Zahlungs-Token" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Zahlungstransaktion" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Zahlungsfehler" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Vielleicht kann das Problem gelöst werden, wenn Sie Ihre " +"Kreditkarteninformationen erneut überprüfen oder Ihre Bank kontaktieren?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Anbieter" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe Veröffentlichbarer Schlüssel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Geheimer Schlüssel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe hat uns folgende Informationen über das Problem gegeben: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: kein Auftrag für Referenz %s gefunden" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "Wir können Ihr Zahlungsmethode momentan nicht einpflegen." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" +"Leider müssen wir Ihnen mitteilen, dass die Transaktion fehlgeschlagen ist." diff --git a/addons/payment_stripe/i18n/el.po b/addons/payment_stripe/i18n/el.po new file mode 100644 index 00000000..5bbfb0ce --- /dev/null +++ b/addons/payment_stripe/i18n/el.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Μια σχετική ή απόλυτη διεύθυνση URL που εμφανίζει μια τετράγωνη εικόνα της εταιρείας ή του είδους σας. \n" +"Ορίζεται στο προφίλ σας στο Stripe. \n" +"Δείτε: https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Διεύθυνση URL της φωτογραφίας στην Ολοκλήρωση Αγοράς" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Κλείσιμο" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Σφάλμα" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "Κωδικός" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Αποδέκτης Πληρωμής" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Διακριτικό Πληρωμής" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Συναλλαγή Πληρωμής" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Σφάλμα πληρωμής" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Ίσως το πρόβλημα να μπορεί να λυθεί με τον επανέλεγχο των στοιχείων της " +"πιστωτικής σας κάρτας ή επικοινωνώντας με την τράπεζά σας;" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Πάροχος" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Δημοσιεύσιμο Κλειδί Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Κρυφό Κλειδί Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" +"Το Stripe μας έδωσε τις ακόλουθες πληροφορίες σχετικά με το πρόβλημα: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: δεν βρέθηκε παραγγελία για την αναφορά %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" +"Λυπούμαστε αλλά πρέπει να σας αναφέρουμε ότι η συναλλαγή έχει αποτύχει." diff --git a/addons/payment_stripe/i18n/eo.po b/addons/payment_stripe/i18n/eo.po new file mode 100644 index 00000000..16291fb4 --- /dev/null +++ b/addons/payment_stripe/i18n/eo.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/es.po b/addons/payment_stripe/i18n/es.po new file mode 100644 index 00000000..4d991d89 --- /dev/null +++ b/addons/payment_stripe/i18n/es.po @@ -0,0 +1,222 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Olivier Dony <odo@odoo.com>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"URL relativa o absoluta que apunta a una imagen cuadrada de tu marca o " +"producto, tal como lo definiste en tu perfil de Stripe. Ver " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL de la imagen del proceso de pago" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Si configuras webhooks, este secreto se utiliza para verificar las firmas " +"electrónicas de los eventos que se envían de Stripe a Odoo. Si no configuras" +" este campo, Odoo deshabilitará el sistema de webhook por completo para el " +"comprador." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Solo un segundo más, te estamos redirigiendo a Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "ID de método de pago" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token de pago" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Error en el pago" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Tal vez el problema se pueda resolver comprobando los datos de tu tarjeta de" +" crédito, o contactando a tu banco" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "ID de intento de pago por Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Intento de pago con contraseña secreta por Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Clave pública de Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Contraseña secreta de Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Webhook de Stripe con contraseña secreta" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe nos proporcionó la siguiente información sobre el problema: \"%s\"" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: %(count)sordenes con referencia %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: no se encontró una orden para la referencia %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"No se puede convertir al cliente Stripe por compatibilidad SCA (Strong " +"Customer Authentication) ¿Existe al menos una tarjeta para este cliente en " +"el backend de Stripe?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "No se puede guardar la tarjeta" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "No podemos agregar tu método de pago en este momento." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Sentimos informarte que se ha producido un error en la transacción." diff --git a/addons/payment_stripe/i18n/es_MX.po b/addons/payment_stripe/i18n/es_MX.po new file mode 100644 index 00000000..dcb92fcf --- /dev/null +++ b/addons/payment_stripe/i18n/es_MX.po @@ -0,0 +1,221 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"URL relativa o absoluta que apunta a una imagen cuadrada de su marca o " +"producto, tal como lo definió en su perfil de Stripe. Ver " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL de la imagen del proceso de pago" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Cerrar" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nombre en pantalla" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Si configura webhooks, este secreto se utiliza para verificar las firmas " +"electrónicas de los eventos que se envían de Stripe a Odoo. Si no configura " +"este campo, Odoo deshabilitará el sistema de webhook por completo para el " +"comprador." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Solo un segundo más, te estamos redirigiendo a Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de pago" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "ID de método de pago" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token de pago" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transacción de pago" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Error en el pago" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Tal vez el problema se pueda resolver comprobando los datos de tu tarjeta de" +" crédito, o contactando a tu banco" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Proveedor" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "ID de intento de pago por Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Intento de pago con contraseña secreta por Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Clave pública de Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Contraseña secreta de Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Webhook de Stripe con contraseña secreta" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe nos proporcionó la siguiente información sobre el problema: \"%s\"" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: %(count)sordenes con referencia %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: no se encontró una orden para la referencia %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"No se puede convertir al cliente Stripe por compatibilidad SCA (Strong " +"Customer Authentication) ¿Existe al menos una tarjeta para este cliente en " +"el backend de Stripe?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "No se puede guardar la tarjeta" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "No podemos agregar su método de pago en este momento." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Sentimos informarte que se ha producido un error en la transacción." diff --git a/addons/payment_stripe/i18n/et.po b/addons/payment_stripe/i18n/et.po new file mode 100644 index 00000000..c881d9cd --- /dev/null +++ b/addons/payment_stripe/i18n/et.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Piia Paurson <piia@avalah.ee>, 2020 +# Egon Raamat <egon@avalah.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Marek Pontus, 2020 +# Martin Aavastik <martin@avalah.ee>, 2020 +# Triine Aavik <triine@avalah.ee>, 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: Triine Aavik <triine@avalah.ee>, 2021\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Sulge" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Viga" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Makse saaja" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Sümboolne makse" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksetehing" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Varustaja" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe Publishable Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Secret Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/eu.po b/addons/payment_stripe/i18n/eu.po new file mode 100644 index 00000000..677d1aac --- /dev/null +++ b/addons/payment_stripe/i18n/eu.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Victor Laskurain <blaskurain@binovo.es>, 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: Victor Laskurain <blaskurain@binovo.es>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Itxi" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Akatsa" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ordainketa transakzioa" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Hornitzailea " + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/fa.po b/addons/payment_stripe/i18n/fa.po new file mode 100644 index 00000000..03b5e8c9 --- /dev/null +++ b/addons/payment_stripe/i18n/fa.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# Mohsen Mohammadi <iammohsen.123@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: Mohsen Mohammadi <iammohsen.123@gmail.com>, 2021\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "بستن" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "خطا" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "شناسه" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "دریافت کننده پرداخت" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "توکن پرداخت" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "تراکنش پرداخت" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "فراهمکننده" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "استریپ" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "کارت ثبت نشد" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/fi.po b/addons/payment_stripe/i18n/fi.po new file mode 100644 index 00000000..cfe95771 --- /dev/null +++ b/addons/payment_stripe/i18n/fi.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2020 +# Tuomas Lyyra <tuomas.lyyra@legenda.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: Tuomas Lyyra <tuomas.lyyra@legenda.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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Sulje" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Virhe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Maksun vastaanottaja" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Maksutapahtuma" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Palveluntarjoaja" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe julkinen avain" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe yksityinen avain" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/fr.po b/addons/payment_stripe/i18n/fr.po new file mode 100644 index 00000000..824e5c9d --- /dev/null +++ b/addons/payment_stripe/i18n/fr.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Priscilla Sanchez <prs@odoo.com>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Une URL absolue ou relative pointant vers une image carrée de votre marque " +"ou produit. Comme définie dans votre profil Stripe. Consultez " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL de l'image de paiement" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Fermer" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Erreur" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Encore une seconde, nous vous redirigeons vers Stripe ..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermédiaire de paiement" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "ID du mode de paiement" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Jeton de paiement" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaction" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Échec du paiement" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Vérifiez les informations de votre carte bancaire ou contactez votre banque." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Transporteur" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "ID d'intention de paiement Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Stripe Payment Intent Secret" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Clé publique Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Clé secrète Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" +"Stripe nous a transmis les informations suivantes concernant le problème : " +"%s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe : aucune commande trouvée pour la référence %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Impossible de convertir le client Stripe pour la compatibilité SCA. " +"Existe-t-il au moins une carte pour ce client dans le backend Stripe ?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Impossible d'enregistrer la carte" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" +"Nous ne sommes pas en mesure d'ajouter votre méthode de paiement pour le " +"moment." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Nous sommes désolés de vous informer que la transaction a échoué." diff --git a/addons/payment_stripe/i18n/gu.po b/addons/payment_stripe/i18n/gu.po new file mode 100644 index 00000000..4e33ae6f --- /dev/null +++ b/addons/payment_stripe/i18n/gu.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "બંધ કરો" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "ભૂલ" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_stripe/i18n/he.po b/addons/payment_stripe/i18n/he.po new file mode 100644 index 00000000..78e3077c --- /dev/null +++ b/addons/payment_stripe/i18n/he.po @@ -0,0 +1,210 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "סגור" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "שגיאה" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "מזהה" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ספק שירות תשלומים" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "אסימון תשלום" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "עסקת תשלום" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "ספק" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "מפתח Stripe שניתן לפרסם" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "מפתח סודי של Stripe " + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/hi.po b/addons/payment_stripe/i18n/hi.po new file mode 100644 index 00000000..4f4564f1 --- /dev/null +++ b/addons/payment_stripe/i18n/hi.po @@ -0,0 +1,208 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 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: Martin Trigaux, 2021\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "बंद" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "त्रुटि!" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/hr.po b/addons/payment_stripe/i18n/hr.po new file mode 100644 index 00000000..56987ddf --- /dev/null +++ b/addons/payment_stripe/i18n/hr.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Tina Milas, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Tina Milas, 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Stjecatelj plaćanja" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token plaćanja" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcija plaćanja" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Davatelj " + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: nije pronađen nalog za referencu %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/hu.po b/addons/payment_stripe/i18n/hu.po new file mode 100644 index 00000000..8b330d17 --- /dev/null +++ b/addons/payment_stripe/i18n/hu.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# gezza <geza.nagy@oregional.hu>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Bezárás" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Hiba" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "Azonosító" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Fizetési szolgáltató" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Fizetési tranzakció" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Szolgáltató" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe publikus kulcs" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe titkos kulcs" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/id.po b/addons/payment_stripe/i18n/id.po new file mode 100644 index 00000000..c9223740 --- /dev/null +++ b/addons/payment_stripe/i18n/id.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# Ryanto The <ry.the77@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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Tutup" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Eror!" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Pemilik Tagihan" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transaksi Tagihan" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Pemberi" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/is.po b/addons/payment_stripe/i18n/is.po new file mode 100644 index 00000000..7782773a --- /dev/null +++ b/addons/payment_stripe/i18n/is.po @@ -0,0 +1,202 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# 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-21 13:17+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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "Loka" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "Villa!" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Payment Acquirer" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_stripe/i18n/it.po b/addons/payment_stripe/i18n/it.po new file mode 100644 index 00000000..76791fec --- /dev/null +++ b/addons/payment_stripe/i18n/it.po @@ -0,0 +1,217 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Paolo Valier, 2020 +# Luigia Cimmino Caserta <lcc@odoo.com>, 2020 +# Sergio Zanchetta <primes2h@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: Sergio Zanchetta <primes2h@gmail.com>, 2021\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"URL relativo o assoluto che punta a un'immagine quadrata del proprio marchio" +" o prodotto, come definito nel profilo Stripe personale. Consultare: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL immagine per pagamento" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Chiudi" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Errore" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Ancora qualche secondo, reindirizzamento a Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Sistema di pagamento" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "ID metodo di pagamento" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token di pagamento" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transazione di pagamento" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Errore di pagamento" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Il problema può essere risolto verificando nuovamente i dettagli della carta" +" di credito o contattando la propria banca." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornitore" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "ID intento di pagamento Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Chiave privata intento di pagamento Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Chiave pubblica Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Chiave privata Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe ha fornito le seguenti informazioni sul problema: \"%s\"" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: trovati %(count)s ordini con riferimento %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: nessun ordine trovato con riferimento %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Impossibile convertire il cliente Stripe per compatibilità SCA. Accertarsi " +"che nell'interfaccia sia presente almeno una carta per il cliente." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Impossibile salvare la carta" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "Impossibile, al momento, aggiungere il metodo di pagamento." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Siamo spiacenti di comunicare che la transazione è fallita." diff --git a/addons/payment_stripe/i18n/ja.po b/addons/payment_stripe/i18n/ja.po new file mode 100644 index 00000000..db249e46 --- /dev/null +++ b/addons/payment_stripe/i18n/ja.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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 +# Yoon Nankyung <nankyung.yoon@pro-spire.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: Yoon Nankyung <nankyung.yoon@pro-spire.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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "チェックアウト画像URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "クローズ" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "エラー" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "決済サービス" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "支払トークン" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "決済トランザクション" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "プロバイダ" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "ストライプ公開APIキー" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/ka.po b/addons/payment_stripe/i18n/ka.po new file mode 100644 index 00000000..49de48f5 --- /dev/null +++ b/addons/payment_stripe/i18n/ka.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.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: Giorgi Melitauri <gmelitauri@live.com>, 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "დახურვა" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "შეცდომა" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "გადახდის ოპერატორი" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "გადახდის ტრანზაქცია" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/km.po b/addons/payment_stripe/i18n/km.po new file mode 100644 index 00000000..60c38799 --- /dev/null +++ b/addons/payment_stripe/i18n/km.po @@ -0,0 +1,200 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2018 +# AN Souphorn <ansouphorn@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: AN Souphorn <ansouphorn@gmail.com>, 2018\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "បិទ" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "កំហុស" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_stripe/i18n/ko.po b/addons/payment_stripe/i18n/ko.po new file mode 100644 index 00000000..ec7f1158 --- /dev/null +++ b/addons/payment_stripe/i18n/ko.po @@ -0,0 +1,212 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"브랜드 또는 제품의 사각 이미지를 가리키는 상대적 또는 절대적 URL입니다. 스트라이프 프로필에 정의된 대로입니다. " +"https://stripe.com/docs/checkout을 참조하세요." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "체크아웃 이미지 URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "마감" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "오류" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "다시 한 번만, Stripe로 리디렉션합니다..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "결제 매입사" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "결제 수단 ID" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "결제 토큰" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "결제 처리" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "결제 오류" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "신용카드 내역을 다시 확인하거나 은행에 연락하면 문제가 해결될 수 있습니다." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "공급업체" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Stripe 결제용 ID" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Stripe 결제용 비밀번호" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe 공개 가능 키" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe 비밀 키" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe는 이 문제에 대해 다음과 같은 정보를 주었습니다. : '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe : 참조 %s에 대한 주문을 찾을 수 없습니다." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"SCA 호환성을 위해 Stripe 고객을 변환 할 수 없습니다. Stripe 백엔드에 이 고객을 위한 카드가 하나 이상 있습니까?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "카드를 저장할 수 없습니다" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "현재 결제 수단을 추가할 수 없습니다." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "거래에 실패했다는 보고를 드리게 되어 유감입니다." diff --git a/addons/payment_stripe/i18n/lb.po b/addons/payment_stripe/i18n/lb.po new file mode 100644 index 00000000..37d3ccee --- /dev/null +++ b/addons/payment_stripe/i18n/lb.po @@ -0,0 +1,163 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 09:11+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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/lt.po b/addons/payment_stripe/i18n/lt.po new file mode 100644 index 00000000..46a7464a --- /dev/null +++ b/addons/payment_stripe/i18n/lt.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2021 +# Arminas Grigonis <arminas@versada.lt>, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Anatolij, 2021 +# Silvija Butko <silvija.butko@gmail.com>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Linas Versada <linaskrisiukenas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Reliatyvus arba absoliutus URL, nurodantis į kvadratinį jūsų prekės ženklo " +"ar produkto paveikslėlį. Toks, kaip nustatyta jūsų \"Stripe\" profilyje: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Apmokėjimo paveikslėlio URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Uždaryti" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Klaida" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Mokėjimo surinkėjas" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Mokėjimo raktas" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Mokėjimo operacija" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Mokėjimo klaida" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Galbūt problemą galima išspręsti dar kartą patikrinus kortelės duomenis ar " +"susisiekus su banku?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Tiekėjas" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe skelbiamas raktas" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe slaptas raktas" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "\"Stripe\" suteikė mums šią informaciją apie problemą: \"%s\"" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: numeriui %s nerasta užsakymų" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Apgailestaujame, tačiau operacija nepavyko." diff --git a/addons/payment_stripe/i18n/lv.po b/addons/payment_stripe/i18n/lv.po new file mode 100644 index 00000000..fee8ed9c --- /dev/null +++ b/addons/payment_stripe/i18n/lv.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/mn.po b/addons/payment_stripe/i18n/mn.po new file mode 100644 index 00000000..33a80b19 --- /dev/null +++ b/addons/payment_stripe/i18n/mn.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Таны брэнд эсвэл бүтээгдэхүүний дөрвөлжин зураг руу заасан харьцангуй буюу " +"үнэмлэхүй URL. Таны Stripe профайл дээр тодорхойлсон дагуу. Харна уу: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Тооцоо хийх Зургийн URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Хаах" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Алдаа" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Төлбөрийн хэрэгсэл" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Төлбөрийн Токен" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Төлбөрийн гүйлгээ" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Төлбөрийн алдаа" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Магадгүй зээлийн картын мэдээллийг дахин шалгах эсвэл банктайгаа холбоо " +"барьж асуудлыг шийдэж болох уу?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Үйлчилгээ үзүүлэгч" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe Publishable Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Secret Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe нь асуудлын талаар дараах мэдээллийг бидэнд өглөө: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: %s кодтой захиалга олдсонгүй" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Гүйлгээг бүтэлгүйтсэнд харамсалтай байна." diff --git a/addons/payment_stripe/i18n/nb.po b/addons/payment_stripe/i18n/nb.po new file mode 100644 index 00000000..d675990e --- /dev/null +++ b/addons/payment_stripe/i18n/nb.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Relativ eller absolutt URL som peker til et kvadratisk bilde av merkevaren " +"eller produktet, som definert i Stripe-profilen din. Se: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Lukk" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Feil" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsinnløser" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Betalingstoken" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransaksjon" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Betalingsfeil" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Kanskje problemet kan løses ved å dobbeltsjekke kortdetaljene dine, eller " +"kontakte banken?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Innløser" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe publiserbar nøkkel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe hemmelig nøkkel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe ga oss følgende informasjon om problemet: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: Ingen ordre funnet for referansen %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Vi beklager, transaksjonen mislyktes." diff --git a/addons/payment_stripe/i18n/nl.po b/addons/payment_stripe/i18n/nl.po new file mode 100644 index 00000000..3c9250a4 --- /dev/null +++ b/addons/payment_stripe/i18n/nl.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Antoine Gilard <ang@odoo.com>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Een relatief of absolute URL die wijst naar een vierkante afbeelding van uw " +"merk of product. Zoals gedefinieerd in uw Stripe profiel. Zie " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Afrekening afbeelding URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Sluiten" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Fout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Als u webhooks inschakelt, wordt dit geheim gebruikt om de elektronische " +"handtekening van evenementen die door Stripe naar Odoo zijn verzonden, te " +"verifiëren. Als u dit veld niet instelt in Odoo, wordt het webhook-systeem " +"voor deze acquirer volledig uitgeschakeld." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Nog even geduld, we verbinden u door naar Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalingsprovider" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "Betaalmethode ID" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Betalingstoken" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalingstransactie" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Fout bij betaling" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Wellicht kan het probleem worden opgelost door dubbel te klikken op uw " +"creditcard details, of door contact op te nemen met uw bank?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provider" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Stripe betalingsinteresse ID" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Stripe betalingsinteresse Secret" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe publiceerbare sleutel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe geheime sleutel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Stripe webhook geheim" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" +"Stripe heeft ons de volgende informatie gegeven over het probleem: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: %(count)s orders gevonden voor referentie %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: geen order gevonden voor referentie %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Niet in staat om Stripe klant voor SCA-compatibiliteit om te zetten. Is er " +"minstens één kaart voor deze klant in de Stripe backend?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Kon kaart niet opslaan" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "We konden uw betaalmethode niet toevoegen op dit moment." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Het spijt ons dat we moeten rapporteren dat de transactie mislukt is." diff --git a/addons/payment_stripe/i18n/payment_stripe.pot b/addons/payment_stripe/i18n/payment_stripe.pot new file mode 100644 index 00000000..6f673a9c --- /dev/null +++ b/addons/payment_stripe/i18n/payment_stripe.pot @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/pl.po b/addons/payment_stripe/i18n/pl.po new file mode 100644 index 00000000..0b22e0ab --- /dev/null +++ b/addons/payment_stripe/i18n/pl.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Zamknij" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Błąd" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Beneficjent płatności" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token płatności" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transakcja płatności" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Dostawca" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/pt.po b/addons/payment_stripe/i18n/pt.po new file mode 100644 index 00000000..ae8ad4e4 --- /dev/null +++ b/addons/payment_stripe/i18n/pt.po @@ -0,0 +1,219 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Manuela Silva <mmsrs@sky.com>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# cafonso <cafonso62@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: cafonso <cafonso62@gmail.com>, 2021\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Um URL relativo ou absoluto que aponta para uma imagem quadrada da sua marca" +" ou produto. Conforme definido no seu perfil do Stripe. Consulte: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Erro" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Se ativar \"webhooks\", este segredo é usado para verificar a assinatura " +"electrónica de eventos enviados pela Stripe para o Odoo. Se não definir este" +" campo em Odoo, irá desativar totalmente o sistema \"webhook\" para este " +"adquirente." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Só mais um segundo, nós estamos a redirecioná-lo para Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Intermediário de Pagamento" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Código de Pagamento" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação de Pagamento" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Provedor" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Id. da Intenção de Pagamentos Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Pagamentos Stripe: Segredo de Intenção" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Código Plublicável Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Cópdigo Secreto Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Segredo do «webhook» da Stripe " + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "A Stripe deu-nos a seguinte informação sobre o problema: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: nenhuma compra encontrada por referência %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/pt_BR.po b/addons/payment_stripe/i18n/pt_BR.po new file mode 100644 index 00000000..db878b9f --- /dev/null +++ b/addons/payment_stripe/i18n/pt_BR.po @@ -0,0 +1,214 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# danimaribeiro <danimaribeiro@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Marcel Savegnago <marcel.savegnago@gmail.com>, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Vanderlei Romera <vanderleiromera@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: Vanderlei Romera <vanderleiromera@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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Fechar" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Erro" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Método de Pagamento" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token de pagamento" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Transação do Pagamento" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Fornecedor" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Chave pública Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Secret Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/ro.po b/addons/payment_stripe/i18n/ro.po new file mode 100644 index 00000000..3f2a631b --- /dev/null +++ b/addons/payment_stripe/i18n/ro.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020 +# Hongu Cosmin <cosmin513@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"O adresă URL relativă sau absolută care să indice o imagine pătratică a " +"mărcii sau a produsului dvs. După cum este definit în profilul dvs. Stripe. " +"Consultați: https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Închide" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Eroare" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Încă o secundă, vă redirecționăm către Stripe ..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Procesator Plată" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Token de plată" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Tranzacție plată" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Eroare de plată" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Poate că problema poate fi rezolvată verificând de două ori datele cardului " +"de credit sau contactând banca dvs.?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Furnizor" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Dungat" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Cheie publicabilă Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Cheia secretă a fâșiei" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe ne-a oferit următoarele informații despre problemă: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Nu se poate salva cardul" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "În acest moment nu putem adăuga metoda dvs. de plată." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Ne pare rău să raport că tranzacția a eșuat." diff --git a/addons/payment_stripe/i18n/ru.po b/addons/payment_stripe/i18n/ru.po new file mode 100644 index 00000000..6d43173a --- /dev/null +++ b/addons/payment_stripe/i18n/ru.po @@ -0,0 +1,222 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2020 +# Oleg Kuryan <oleg@ventor.tech>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# Сергей Шебанин <sergey@shebanin.ru>, 2020 +# ILMIR <karamov@it-projects.info>, 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: ILMIR <karamov@it-projects.info>, 2021\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Относительный или абсолютный URL, указывающий квадратное изображение вашего " +"бренда или продукта. Как определено в вашем профиле Stripe. См.: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL изображения оформления заказа" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Закрыть" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Ошибка" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "Идентификатор" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"Если вы включаете вебхуки, этот секретный параметр используется для проверки" +" электронной подписи событий, отправляемых Stripe в Odoo. Если это поле не " +"будет установлено в Odoo, система вебхуков для этого эквайера будет " +"полностью отключена." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платежная система" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Токен оплаты" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Операция Оплаты" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Ошибка платежа" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Возможно, проблема может быть решена путем двойной проверки данных вашей " +"кредитной карты или обращение к вашему банку?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Идентификатор платежной цели Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Опубликованный ключ Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Секретный ключ Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Секретный параметр вебхука Stripe" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe предоставил нам такую информацию о проблеме '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: не найдены заказы для ссылки %s " + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Нам очень жаль сообщить о невозможности осуществления транзакции." diff --git a/addons/payment_stripe/i18n/si.po b/addons/payment_stripe/i18n/si.po new file mode 100644 index 00000000..a764c175 --- /dev/null +++ b/addons/payment_stripe/i18n/si.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/sk.po b/addons/payment_stripe/i18n/sk.po new file mode 100644 index 00000000..4e8cb036 --- /dev/null +++ b/addons/payment_stripe/i18n/sk.po @@ -0,0 +1,213 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Pavol Krnáč <pavol.krnac@ekoenergo.sk>, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# 192015edb78c7397bdecc2172c7447b3, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Rastislav Brencic <rastislav.brencic@azet.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Zatvoriť" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Chyba" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Príjemca platby " + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Platobný token" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Platobná transakcia" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Poskytovateľ" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Verejný kľúč Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Tajný kľúč Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/sl.po b/addons/payment_stripe/i18n/sl.po new file mode 100644 index 00000000..cf734ce0 --- /dev/null +++ b/addons/payment_stripe/i18n/sl.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Jasmina Macur <jasmina@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Jasmina Macur <jasmina@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Zaključi" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Napaka" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ponudnik plačilne storitve" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Plačilni žeton" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Plačilna transakcija" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Ponudnik" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/sr.po b/addons/payment_stripe/i18n/sr.po new file mode 100644 index 00000000..98faf53d --- /dev/null +++ b/addons/payment_stripe/i18n/sr.po @@ -0,0 +1,199 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Martin Trigaux, 2018\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_stripe/i18n/sr@latin.po b/addons/payment_stripe/i18n/sr@latin.po new file mode 100644 index 00000000..30f992ed --- /dev/null +++ b/addons/payment_stripe/i18n/sr@latin.po @@ -0,0 +1,145 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +# Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 11.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-24 09:00+0000\n" +"PO-Revision-Date: 2017-10-24 09:00+0000\n" +"Last-Translator: Nemanja Dragovic <nemanjadragovic94@gmail.com>, 2017\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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "×" +msgstr "&puta;" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer_stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer_stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "Zatvori" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "Error" +msgstr "Greška" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:32 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:57 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:167 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer_stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer_stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:165 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:177 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:173 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:163 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "payment.token" +msgstr "" diff --git a/addons/payment_stripe/i18n/sv.po b/addons/payment_stripe/i18n/sv.po new file mode 100644 index 00000000..d583dffe --- /dev/null +++ b/addons/payment_stripe/i18n/sv.po @@ -0,0 +1,211 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Daniel Forslund <daniel.forslund@gmail.com>, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Stäng" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Fel" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Betalnings Inlösare" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Betalningstransaktion" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Leverantör" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/th.po b/addons/payment_stripe/i18n/th.po new file mode 100644 index 00000000..3977c330 --- /dev/null +++ b/addons/payment_stripe/i18n/th.po @@ -0,0 +1,201 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2018 +# 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-21 13:17+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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:9 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Adyen" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Authorize.Net" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Buckaroo" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "CVC" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Card number" +msgstr "" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Cardholder name" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:15 +#, python-format +msgid "Close" +msgstr "ปิด" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:8 +#, python-format +msgid "Error" +msgstr "ผิดพลาด" + +#. module: payment_stripe +#: model_terms:ir.ui.view,arch_db:payment_stripe.stripe_s2s_form +msgid "Expires (MM / YY)" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:33 +#, python-format +msgid "Just one more second, confirming your payment..." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Manual Configuration" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Ogone" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "PayUmoney" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "ผู้รับชำระ" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:59 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Paypal" +msgstr "Paypal" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:174 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "ผู้ให้บริการ" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Sips" +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:172 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:184 +#, python-format +msgid "Stripe: %s orders found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:180 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:170 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" + +#. module: payment_stripe +#: selection:payment.acquirer,provider:0 +msgid "Wire Transfer" +msgstr "" diff --git a/addons/payment_stripe/i18n/tr.po b/addons/payment_stripe/i18n/tr.po new file mode 100644 index 00000000..26c3cba4 --- /dev/null +++ b/addons/payment_stripe/i18n/tr.po @@ -0,0 +1,225 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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 +# abc Def <hdogan1974@gmail.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Markanızın veya ürünün kare resmine yönlendiren ilişkili veya mutlak bir " +"URL. Stripe porfilinde tanımladığınız gibi. See: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Ödeme Resmi URL'si" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Kapat" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Hata" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Just one more second, We are redirecting you to Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Ödeme Alıcısı" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "Payment Method ID" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Ödeme Belirteci" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Ödeme İşlemi" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Ödeme hatası" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Belki problem kredi kartı bilgilerinizi ya da bankanızla anlaşmanızı bir kez" +" daha kontrol ederek çözülebilir? " + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Sağlayıcı" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Stripe Payment Intent ID" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Stripe Payment Intent Secret" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe yayınlanabilir şifre" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Gizli Şifre" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Stripe Webhook Secret" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe gave us the following info about the problem: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: %(count)s orders found for reference %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: no order found for reference %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Unable to save card" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "We are not able to add your payment method at the moment. " + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "İşlemin başarısız olduğunu bildirdiğimiz için üzgünüz." diff --git a/addons/payment_stripe/i18n/uk.po b/addons/payment_stripe/i18n/uk.po new file mode 100644 index 00000000..35bbf739 --- /dev/null +++ b/addons/payment_stripe/i18n/uk.po @@ -0,0 +1,216 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# 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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"Відносна або абсолютна URL-адреса, що вказує на квадратне зображення вашого " +"бренду або товару. Як визначено у вашому профілі Stripe. Перегляньте: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "URL-адреса зображення для оформлення замовлення" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Закрити" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Помилка" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Ще одну секунду, ми перенаправляємо вас на Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Останні зміни на" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "Платіжний еквайєр" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "ID способу оплати" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Токен оплати" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Платіжна операція" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Помилка платежу" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Можливо, проблема може бути вирішена шляхом подвійної перевірки даних вашої " +"кредитної картки або звернення до вашого банку?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Провайдер" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "ID призначення платежу Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Пароль призначення платежу Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Опублікований ключ Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Секретний ключ Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe надав нам таку інформацію про проблему: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: замовлення не знайдено для довідки %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Неможливо конвертувати клієнта Stripe для сумісності з SCA. Чи є принаймні " +"одна картка для цього клієнта на бекенді Stripe?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Не вдається зберегти картку" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "Ми не можемо додати ваш спосіб оплати на даний момент." + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "Нам дуже шкода повідомляти про неможливість здійснення транзакції." diff --git a/addons/payment_stripe/i18n/ur.po b/addons/payment_stripe/i18n/ur.po new file mode 100644 index 00000000..a0af0dda --- /dev/null +++ b/addons/payment_stripe/i18n/ur.po @@ -0,0 +1,204 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "" diff --git a/addons/payment_stripe/i18n/vi.po b/addons/payment_stripe/i18n/vi.po new file mode 100644 index 00000000..2fe397ed --- /dev/null +++ b/addons/payment_stripe/i18n/vi.po @@ -0,0 +1,223 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# sao sang <saosangmo@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Dung Nguyen Thi <dungnt@trobz.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "Checkout Image URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "Đóng" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "Lỗi" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "Just one more second, We are redirecting you to Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "NCC dịch vụ Thanh toán" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "Payment Method ID" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "Mã thanh toán" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "Giao dịch thanh toán" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "Payment error" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "Nhà cung cấp" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "Stripe Payment Intent ID" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "Stripe Payment Intent Secret" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe Publishable Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe Secret Key" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "Stripe Webhook Secret" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe gave us the following info about the problem: '%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "Stripe: %(count)s orders found for reference %(reference)s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe: no order found for reference %s" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "Unable to save card" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "We are not able to add your payment method at the moment. " + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "We're sorry to report that the transaction has failed." diff --git a/addons/payment_stripe/i18n/zh_CN.po b/addons/payment_stripe/i18n/zh_CN.po new file mode 100644 index 00000000..dd52568f --- /dev/null +++ b/addons/payment_stripe/i18n/zh_CN.po @@ -0,0 +1,215 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2020 +# liAnGjiA <liangjia@qq.com>, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.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_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"一个相对的或绝对的URL,指向你的品牌或产品的正方形图像。在条纹轮廓中定义。参见:https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "检出图像URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "关闭" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "错误" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "支付收款" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "付款令牌" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "付款错误" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "请检查您的信用卡详细信息或联系银行。" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "物流商" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "条纹" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe 公钥" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe 密钥" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe 为我们提供了以下关于问题的信息:'%s'" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe:未找到可用于参考 %s 的订单" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "交易失败。" diff --git a/addons/payment_stripe/i18n/zh_TW.po b/addons/payment_stripe/i18n/zh_TW.po new file mode 100644 index 00000000..16fe2439 --- /dev/null +++ b/addons/payment_stripe/i18n/zh_TW.po @@ -0,0 +1,210 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * payment_stripe +# +# Translators: +# Martin Trigaux, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:15+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "×" +msgstr "×" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "" +"A relative or absolute URL pointing to a square image of your brand or " +"product. As defined in your Stripe profile. See: " +"https://stripe.com/docs/checkout" +msgstr "" +"指向您的品牌或產品的正方形圖片的相對或絕對網址。在條紋配置文件中定義。請參閱:https://stripe.com/docs/checkout" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_image_url +msgid "Checkout Image URL" +msgstr "檢出圖像URL" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Close" +msgstr "關閉" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__display_name +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/xml/stripe_templates.xml:0 +#, python-format +msgid "Error" +msgstr "錯誤" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__id +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__id +msgid "ID" +msgstr "ID" + +#. module: payment_stripe +#: model:ir.model.fields,help:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "" +"If you enable webhooks, this secret is used to verify the electronic " +"signature of events sent by Stripe to Odoo. Failing to set this field in " +"Odoo will disable the webhook system for this acquirer entirely." +msgstr "" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Just one more second, We are redirecting you to Stripe..." +msgstr "請稍等,我們將把頁面重定向到Stripe..." + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token____last_update +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_acquirer +msgid "Payment Acquirer" +msgstr "付款收單方" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_token__stripe_payment_method +msgid "Payment Method ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_token +msgid "Payment Token" +msgstr "付款指示物" + +#. module: payment_stripe +#: model:ir.model,name:payment_stripe.model_payment_transaction +msgid "Payment Transaction" +msgstr "付款交易" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/stripe.js:0 +#, python-format +msgid "Payment error" +msgstr "付款錯誤" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Perhaps the problem can be solved by double-checking your credit card " +"details, or contacting your bank?" +msgstr "或許對您的信用卡詳細資訊進行再次檢查或聯繫您的銀行可解決此問題?" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__provider +msgid "Provider" +msgstr "服務商" + +#. module: payment_stripe +#: model:ir.model.fields.selection,name:payment_stripe.selection__payment_acquirer__provider__stripe +msgid "Stripe" +msgstr "Stripe" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent +msgid "Stripe Payment Intent ID" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_transaction__stripe_payment_intent_secret +msgid "Stripe Payment Intent Secret" +msgstr "" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_publishable_key +msgid "Stripe Publishable Key" +msgstr "Stripe 公鑰" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_secret_key +msgid "Stripe Secret Key" +msgstr "Stripe 密鑰" + +#. module: payment_stripe +#: model:ir.model.fields,field_description:payment_stripe.field_payment_acquirer__stripe_webhook_secret +msgid "Stripe Webhook Secret" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe gave us the following info about the problem: '%s'" +msgstr "Stripe 為我們提供了以下關於 '%s' 問題的訊息:" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: %(count)s orders found for reference %(reference)s" +msgstr "" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "Stripe: no order found for reference %s" +msgstr "Stripe:未找到參考 %s 的訂單" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "" +"Unable to convert Stripe customer for SCA compatibility. Is there at least " +"one card for this customer in the Stripe backend?" +msgstr "無法轉換條帶客戶以實現 SCA 相容性。Stripe後端中是否至少有一張此客戶的卡?" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "Unable to save card" +msgstr "無法保存信用卡" + +#. module: payment_stripe +#. openerp-web +#: code:addons/payment_stripe/static/src/js/payment_form.js:0 +#, python-format +msgid "We are not able to add your payment method at the moment. " +msgstr "目前我們無法添加您的付款方式。" + +#. module: payment_stripe +#: code:addons/payment_stripe/models/payment.py:0 +#, python-format +msgid "We're sorry to report that the transaction has failed." +msgstr "很遺憾地告訴您,交易已失敗。" diff --git a/addons/payment_stripe/models/__init__.py b/addons/payment_stripe/models/__init__.py new file mode 100644 index 00000000..ef125336 --- /dev/null +++ b/addons/payment_stripe/models/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +from . import payment diff --git a/addons/payment_stripe/models/payment.py b/addons/payment_stripe/models/payment.py new file mode 100644 index 00000000..84ad304d --- /dev/null +++ b/addons/payment_stripe/models/payment.py @@ -0,0 +1,518 @@ +# coding: utf-8 + +from collections import namedtuple +from datetime import datetime +from hashlib import sha256 +import hmac +import json +import logging +import requests +import pprint +from requests.exceptions import HTTPError +from werkzeug import urls + +from odoo import api, fields, models, _ +from odoo.http import request +from odoo.tools.float_utils import float_round +from odoo.tools import consteq +from odoo.exceptions import ValidationError + +from odoo.addons.payment_stripe.controllers.main import StripeController + +_logger = logging.getLogger(__name__) + +# The following currencies are integer only, see https://stripe.com/docs/currencies#zero-decimal +INT_CURRENCIES = [ + u'BIF', u'XAF', u'XPF', u'CLP', u'KMF', u'DJF', u'GNF', u'JPY', u'MGA', u'PYG', u'RWF', u'KRW', + u'VUV', u'VND', u'XOF' +] +STRIPE_SIGNATURE_AGE_TOLERANCE = 600 # in seconds + + +class PaymentAcquirerStripe(models.Model): + _inherit = 'payment.acquirer' + + provider = fields.Selection(selection_add=[ + ('stripe', 'Stripe') + ], ondelete={'stripe': 'set default'}) + stripe_secret_key = fields.Char(required_if_provider='stripe', groups='base.group_user') + stripe_publishable_key = fields.Char(required_if_provider='stripe', groups='base.group_user') + stripe_webhook_secret = fields.Char( + string='Stripe Webhook Secret', groups='base.group_user', + help="If you enable webhooks, this secret is used to verify the electronic " + "signature of events sent by Stripe to Odoo. Failing to set this field in Odoo " + "will disable the webhook system for this acquirer entirely.") + stripe_image_url = fields.Char( + "Checkout Image URL", groups='base.group_user', + help="A relative or absolute URL pointing to a square image of your " + "brand or product. As defined in your Stripe profile. See: " + "https://stripe.com/docs/checkout") + + def stripe_form_generate_values(self, tx_values): + self.ensure_one() + + base_url = self.get_base_url() + stripe_session_data = { + 'line_items[][amount]': int(tx_values['amount'] if tx_values['currency'].name in INT_CURRENCIES else float_round(tx_values['amount'] * 100, 2)), + 'line_items[][currency]': tx_values['currency'].name, + 'line_items[][quantity]': 1, + 'line_items[][name]': tx_values['reference'], + 'client_reference_id': tx_values['reference'], + 'success_url': urls.url_join(base_url, StripeController._success_url) + '?reference=%s' % urls.url_quote_plus(tx_values['reference']), + 'cancel_url': urls.url_join(base_url, StripeController._cancel_url) + '?reference=%s' % urls.url_quote_plus(tx_values['reference']), + 'payment_intent_data[description]': tx_values['reference'], + 'customer_email': tx_values.get('partner_email') or tx_values.get('billing_partner_email'), + } + if tx_values['type'] == 'form_save': + stripe_session_data['payment_intent_data[setup_future_usage]'] = 'off_session' + + self._add_available_payment_method_types(stripe_session_data, tx_values) + + tx_values['session_id'] = self.with_context(stripe_manual_payment=True)._create_stripe_session(stripe_session_data) + + return tx_values + + @api.model + def _add_available_payment_method_types(self, stripe_session_data, tx_values): + """ + Add payment methods available for the given transaction + + :param stripe_session_data: dictionary to add the payment method types to + :param tx_values: values of the transaction to consider the payment method types for + """ + PMT = namedtuple('PaymentMethodType', ['name', 'countries', 'currencies', 'recurrence']) + all_payment_method_types = [ + PMT('card', [], [], 'recurring'), + PMT('ideal', ['nl'], ['eur'], 'punctual'), + PMT('bancontact', ['be'], ['eur'], 'punctual'), + PMT('eps', ['at'], ['eur'], 'punctual'), + PMT('giropay', ['de'], ['eur'], 'punctual'), + PMT('p24', ['pl'], ['eur', 'pln'], 'punctual'), + ] + + existing_icons = [(icon.name or '').lower() for icon in self.env['payment.icon'].search([])] + linked_icons = [(icon.name or '').lower() for icon in self.payment_icon_ids] + + # We don't filter out pmt in the case the icon doesn't exist at all as it would be **implicit** exclusion + icon_filtered = filter(lambda pmt: pmt.name == 'card' or + pmt.name in linked_icons or + pmt.name not in existing_icons, all_payment_method_types) + country = (tx_values['billing_partner_country'].code or 'no_country').lower() + pmt_country_filtered = filter(lambda pmt: not pmt.countries or country in pmt.countries, icon_filtered) + currency = (tx_values.get('currency').name or 'no_currency').lower() + pmt_currency_filtered = filter(lambda pmt: not pmt.currencies or currency in pmt.currencies, pmt_country_filtered) + pmt_recurrence_filtered = filter(lambda pmt: tx_values.get('type') != 'form_save' or pmt.recurrence == 'recurring', + pmt_currency_filtered) + + available_payment_method_types = map(lambda pmt: pmt.name, pmt_recurrence_filtered) + + for idx, payment_method_type in enumerate(available_payment_method_types): + stripe_session_data[f'payment_method_types[{idx}]'] = payment_method_type + + def _stripe_request(self, url, data=False, method='POST'): + self.ensure_one() + url = urls.url_join(self._get_stripe_api_url(), url) + headers = { + 'AUTHORIZATION': 'Bearer %s' % self.sudo().stripe_secret_key, + 'Stripe-Version': '2019-05-16', # SetupIntent need a specific version + } + resp = requests.request(method, url, data=data, headers=headers) + # Stripe can send 4XX errors for payment failure (not badly-formed requests) + # check if error `code` is present in 4XX response and raise only if not + # cfr https://stripe.com/docs/error-codes + # these can be made customer-facing, as they usually indicate a problem with the payment + # (e.g. insufficient funds, expired card, etc.) + # if the context key `stripe_manual_payment` is set then these errors will be raised as ValidationError, + # otherwise, they will be silenced, and the will be returned no matter the status. + # This key should typically be set for payments in the present and unset for automated payments + # (e.g. through crons) + if not resp.ok and self._context.get('stripe_manual_payment') and (400 <= resp.status_code < 500 and resp.json().get('error', {}).get('code')): + try: + resp.raise_for_status() + except HTTPError: + _logger.error(resp.text) + stripe_error = resp.json().get('error', {}).get('message', '') + error_msg = " " + (_("Stripe gave us the following info about the problem: '%s'", stripe_error)) + raise ValidationError(error_msg) + return resp.json() + + def _create_stripe_session(self, kwargs): + self.ensure_one() + resp = self._stripe_request('checkout/sessions', kwargs) + if resp.get('payment_intent') and kwargs.get('client_reference_id'): + tx = self.env['payment.transaction'].sudo().search([('reference', '=', kwargs['client_reference_id'])]) + tx.stripe_payment_intent = resp['payment_intent'] + if 'id' not in resp and 'error' in resp: + _logger.error(resp['error']['message']) + return resp['id'] + + def _create_setup_intent(self, kwargs): + self.ensure_one() + params = { + 'usage': 'off_session', + } + _logger.info('_stripe_create_setup_intent: Sending values to stripe, values:\n%s', pprint.pformat(params)) + + res = self._stripe_request('setup_intents', params) + + _logger.info('_stripe_create_setup_intent: Values received:\n%s', pprint.pformat(res)) + return res + + @api.model + def _get_stripe_api_url(self): + return 'https://api.stripe.com/v1/' + + @api.model + def stripe_s2s_form_process(self, data): + if 'card' in data and not data.get('card'): + # coming back from a checkout payment and iDeal (or another non-card pm) + # can't save the token if it's not a card + # note that in the case of a s2s payment, 'card' wont be + # in the data dict because we need to fetch it from the stripe server + _logger.info('unable to save card info from Stripe since the payment was not done with a card') + return self.env['payment.token'] + last4 = data.get('card', {}).get('last4') + if not last4: + # PM was created with a setup intent, need to get last4 digits through + # yet another call -_- + acquirer_id = self.env['payment.acquirer'].browse(int(data['acquirer_id'])) + pm = data.get('payment_method') + res = acquirer_id._stripe_request('payment_methods/%s' % pm, data=False, method='GET') + last4 = res.get('card', {}).get('last4', '****') + + payment_token = self.env['payment.token'].sudo().create({ + 'acquirer_id': int(data['acquirer_id']), + 'partner_id': int(data['partner_id']), + 'stripe_payment_method': data.get('payment_method'), + 'name': 'XXXXXXXXXXXX%s' % last4, + 'acquirer_ref': data.get('customer') + }) + return payment_token + + def _get_feature_support(self): + """Get advanced feature support by provider. + + Each provider should add its technical in the corresponding + key for the following features: + * tokenize: support saving payment data in a payment.tokenize + object + """ + res = super(PaymentAcquirerStripe, self)._get_feature_support() + res['tokenize'].append('stripe') + return res + + def _handle_stripe_webhook(self, data): + """Process a webhook payload from Stripe. + + Post-process a webhook payload to act upon the matching payment.transaction + record in Odoo. + """ + wh_type = data.get('type') + if wh_type != 'checkout.session.completed': + _logger.info('unsupported webhook type %s, ignored', wh_type) + return False + + _logger.info('handling %s webhook event from stripe', wh_type) + + stripe_object = data.get('data', {}).get('object') + if not stripe_object: + raise ValidationError('Stripe Webhook data does not conform to the expected API.') + if wh_type == 'checkout.session.completed': + return self._handle_checkout_webhook(stripe_object) + return False + + def _verify_stripe_signature(self): + """ + :return: true if and only if signature matches hash of payload calculated with secret + :raises ValidationError: if signature doesn't match + """ + if not self.stripe_webhook_secret: + raise ValidationError('webhook event received but webhook secret is not configured') + signature = request.httprequest.headers.get('Stripe-Signature') + body = request.httprequest.data + + sign_data = {k: v for (k, v) in [s.split('=') for s in signature.split(',')]} + event_timestamp = int(sign_data['t']) + if datetime.utcnow().timestamp() - event_timestamp > STRIPE_SIGNATURE_AGE_TOLERANCE: + _logger.error('stripe event is too old, event is discarded') + raise ValidationError('event timestamp older than tolerance') + + signed_payload = "%s.%s" % (event_timestamp, body.decode('utf-8')) + + actual_signature = sign_data['v1'] + expected_signature = hmac.new(self.stripe_webhook_secret.encode('utf-8'), + signed_payload.encode('utf-8'), + sha256).hexdigest() + + if not consteq(expected_signature, actual_signature): + _logger.error( + 'incorrect webhook signature from Stripe, check if the webhook signature ' + 'in Odoo matches to one in the Stripe dashboard') + raise ValidationError('incorrect webhook signature') + + return True + + def _handle_checkout_webhook(self, checkout_object: dir): + """ + Process a checkout.session.completed Stripe web hook event, + mark related payment successful + + :param checkout_object: provided in the request body + :return: True if and only if handling went well, False otherwise + :raises ValidationError: if input isn't usable + """ + tx_reference = checkout_object.get('client_reference_id') + data = {'reference': tx_reference} + try: + odoo_tx = self.env['payment.transaction']._stripe_form_get_tx_from_data(data) + except ValidationError as e: + _logger.info('Received notification for tx %s. Skipped it because of %s', tx_reference, e) + return False + + PaymentAcquirerStripe._verify_stripe_signature(odoo_tx.acquirer_id) + + url = 'payment_intents/%s' % odoo_tx.stripe_payment_intent + stripe_tx = odoo_tx.acquirer_id._stripe_request(url) + + if 'error' in stripe_tx: + error = stripe_tx['error'] + raise ValidationError("Could not fetch Stripe payment intent related to %s because of %s; see %s" % ( + odoo_tx, error['message'], error['doc_url'])) + + if stripe_tx.get('charges') and stripe_tx.get('charges').get('total_count'): + charge = stripe_tx.get('charges').get('data')[0] + data.update(charge) + + return odoo_tx.form_feedback(data, 'stripe') + + +class PaymentTransactionStripe(models.Model): + _inherit = 'payment.transaction' + + stripe_payment_intent = fields.Char(string='Stripe Payment Intent ID', readonly=True) + stripe_payment_intent_secret = fields.Char(string='Stripe Payment Intent Secret', readonly=True) + + def _get_processing_info(self): + res = super()._get_processing_info() + if self.acquirer_id.provider == 'stripe': + stripe_info = { + 'stripe_payment_intent': self.stripe_payment_intent, + 'stripe_payment_intent_secret': self.stripe_payment_intent_secret, + 'stripe_publishable_key': self.acquirer_id.stripe_publishable_key, + } + res.update(stripe_info) + return res + + def form_feedback(self, data, acquirer_name): + if data.get('reference') and acquirer_name == 'stripe': + transaction = self.env['payment.transaction'].search([('reference', '=', data['reference'])]) + + url = 'payment_intents/%s' % transaction.stripe_payment_intent + resp = transaction.acquirer_id._stripe_request(url) + if resp.get('charges') and resp.get('charges').get('total_count'): + resp = resp.get('charges').get('data')[0] + + data.update(resp) + _logger.info('Stripe: entering form_feedback with post data %s' % pprint.pformat(data)) + return super(PaymentTransactionStripe, self).form_feedback(data, acquirer_name) + + def _stripe_create_payment_intent(self, acquirer_ref=None, email=None): + if not self.payment_token_id.stripe_payment_method: + # old token before using sca, need to fetch data from the api + self.payment_token_id._stripe_sca_migrate_customer() + + charge_params = { + 'amount': int(self.amount if self.currency_id.name in INT_CURRENCIES else float_round(self.amount * 100, 2)), + 'currency': self.currency_id.name.lower(), + 'off_session': True, + 'confirm': True, + 'payment_method': self.payment_token_id.stripe_payment_method, + 'customer': self.payment_token_id.acquirer_ref, + "description": self.reference, + } + if not self.env.context.get('off_session'): + charge_params.update(setup_future_usage='off_session', off_session=False) + _logger.info('_stripe_create_payment_intent: Sending values to stripe, values:\n%s', pprint.pformat(charge_params)) + + res = self.acquirer_id._stripe_request('payment_intents', charge_params) + if res.get('charges') and res.get('charges').get('total_count'): + res = res.get('charges').get('data')[0] + + _logger.info('_stripe_create_payment_intent: Values received:\n%s', pprint.pformat(res)) + return res + + def stripe_s2s_do_transaction(self, **kwargs): + self.ensure_one() + result = self._stripe_create_payment_intent(acquirer_ref=self.payment_token_id.acquirer_ref, email=self.partner_email) + return self._stripe_s2s_validate_tree(result) + + def _create_stripe_refund(self): + + refund_params = { + 'charge': self.acquirer_reference, + 'amount': int(float_round(self.amount * 100, 2)), # by default, stripe refund the full amount (we don't really need to specify the value) + 'metadata[reference]': self.reference, + } + + _logger.info('_create_stripe_refund: Sending values to stripe URL, values:\n%s', pprint.pformat(refund_params)) + res = self.acquirer_id._stripe_request('refunds', refund_params) + _logger.info('_create_stripe_refund: Values received:\n%s', pprint.pformat(res)) + + return res + + def stripe_s2s_do_refund(self, **kwargs): + self.ensure_one() + result = self._create_stripe_refund() + return self._stripe_s2s_validate_tree(result) + + @api.model + def _stripe_form_get_tx_from_data(self, data): + """ Given a data dict coming from stripe, verify it and find the related + transaction record. """ + reference = data.get('reference') + if not reference: + stripe_error = data.get('error', {}).get('message', '') + _logger.error('Stripe: invalid reply received from stripe API, looks like ' + 'the transaction failed. (error: %s)', stripe_error or 'n/a') + error_msg = _("We're sorry to report that the transaction has failed.") + if stripe_error: + error_msg += " " + (_("Stripe gave us the following info about the problem: '%s'") % + stripe_error) + error_msg += " " + _("Perhaps the problem can be solved by double-checking your " + "credit card details, or contacting your bank?") + raise ValidationError(error_msg) + + tx = self.search([('reference', '=', reference)]) + if not tx: + error_msg = _('Stripe: no order found for reference %s', reference) + _logger.error(error_msg) + raise ValidationError(error_msg) + elif len(tx) > 1: + error_msg = _('Stripe: %(count)s orders found for reference %(reference)s', count=len(tx), reference=reference) + _logger.error(error_msg) + raise ValidationError(error_msg) + return tx[0] + + def _stripe_s2s_validate_tree(self, tree): + self.ensure_one() + if self.state not in ("draft", "pending"): + _logger.info('Stripe: trying to validate an already validated tx (ref %s)', self.reference) + return True + + status = tree.get('status') + tx_id = tree.get('id') + tx_secret = tree.get("client_secret") + pi_id = tree.get('payment_intent') + vals = { + "date": fields.datetime.now(), + "acquirer_reference": tx_id, + "stripe_payment_intent": pi_id or tx_id, + "stripe_payment_intent_secret": tx_secret + } + if status == 'succeeded': + self.write(vals) + self._set_transaction_done() + self.execute_callback() + if self.type == 'form_save': + s2s_data = { + 'customer': tree.get('customer'), + 'payment_method': tree.get('payment_method'), + 'card': tree.get('payment_method_details').get('card'), + 'acquirer_id': self.acquirer_id.id, + 'partner_id': self.partner_id.id + } + token = self.acquirer_id.stripe_s2s_form_process(s2s_data) + self.payment_token_id = token.id + if self.payment_token_id: + self.payment_token_id.verified = True + return True + if status in ('processing', 'requires_action'): + self.write(vals) + self._set_transaction_pending() + return True + if status == 'requires_payment_method': + self._set_transaction_cancel() + self.acquirer_id._stripe_request('payment_intents/%s/cancel' % self.stripe_payment_intent) + return False + else: + error = tree.get("failure_message") or tree.get('error', {}).get('message') + self._set_transaction_error(error) + return False + + def _stripe_form_get_invalid_parameters(self, data): + invalid_parameters = [] + if data.get('amount') != int(self.amount if self.currency_id.name in INT_CURRENCIES else float_round(self.amount * 100, 2)): + invalid_parameters.append(('Amount', data.get('amount'), self.amount * 100)) + if data.get('currency') and data.get('currency').upper() != self.currency_id.name: + invalid_parameters.append(('Currency', data.get('currency'), self.currency_id.name)) + if data.get('payment_intent') and data.get('payment_intent') != self.stripe_payment_intent: + invalid_parameters.append(('Payment Intent', data.get('payment_intent'), self.stripe_payment_intent)) + return invalid_parameters + + def _stripe_form_validate(self, data): + return self._stripe_s2s_validate_tree(data) + + +class PaymentTokenStripe(models.Model): + _inherit = 'payment.token' + + stripe_payment_method = fields.Char('Payment Method ID') + + @api.model + def stripe_create(self, values): + if values.get('stripe_payment_method') and not values.get('acquirer_ref'): + partner_id = self.env['res.partner'].browse(values.get('partner_id')) + payment_acquirer = self.env['payment.acquirer'].browse(values.get('acquirer_id')) + + # create customer to stipe + customer_data = { + 'email': partner_id.email + } + cust_resp = payment_acquirer._stripe_request('customers', customer_data) + + # link customer with payment method + api_url_payment_method = 'payment_methods/%s/attach' % values['stripe_payment_method'] + method_data = { + 'customer': cust_resp.get('id') + } + payment_acquirer._stripe_request(api_url_payment_method, method_data) + return { + 'acquirer_ref': cust_resp['id'], + } + return values + + def _stripe_sca_migrate_customer(self): + """Migrate a token from the old implementation of Stripe to the SCA one. + + In the old implementation, it was possible to create a valid charge just by + giving the customer ref to ask Stripe to use the default source (= default + card). Since we have a one-to-one matching between a saved card, this used to + work well - but now we need to specify the payment method for each call and so + we have to contact stripe to get the default source for the customer and save it + in the payment token. + This conversion will happen once per token, the first time it gets used following + the installation of the module.""" + self.ensure_one() + url = "customers/%s" % (self.acquirer_ref) + data = self.acquirer_id._stripe_request(url, method="GET") + sources = data.get('sources', {}).get('data', []) + pm_ref = False + if sources: + if len(sources) > 1: + _logger.warning('stripe sca customer conversion: there should be a single saved source per customer!') + pm_ref = sources[0].get('id') + else: + url = 'payment_methods' + params = { + 'type': 'card', + 'customer': self.acquirer_ref, + } + payment_methods = self.acquirer_id._stripe_request(url, params, method='GET') + cards = payment_methods.get('data', []) + if len(cards) > 1: + _logger.warning('stripe sca customer conversion: there should be a single saved source per customer!') + pm_ref = cards and cards[0].get('id') + if not pm_ref: + raise ValidationError(_('Unable to convert Stripe customer for SCA compatibility. Is there at least one card for this customer in the Stripe backend?')) + self.stripe_payment_method = pm_ref + _logger.info('converted old customer ref to sca-compatible record for payment token %s', self.id) diff --git a/addons/payment_stripe/static/description/icon.png b/addons/payment_stripe/static/description/icon.png Binary files differnew file mode 100644 index 00000000..81bb12e9 --- /dev/null +++ b/addons/payment_stripe/static/description/icon.png diff --git a/addons/payment_stripe/static/description/icon.svg b/addons/payment_stripe/static/description/icon.svg new file mode 100644 index 00000000..70572e64 --- /dev/null +++ b/addons/payment_stripe/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 46h2.714v1.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V37.5H32.5c.333-3.333-.165-5.5-1.494-6.5h18.03v-3.212a.342.342 0 0 0-.339-.343H29.765c.361-1.01.57-1.924.627-2.742h18.644c1.5 0 2.714 1.228 2.714 2.742v20.11c0 1.514-1.213 2.742-2.714 2.742H21.964c-1.5 0-2.714-1.228-2.714-2.742V46zm-3.79 9.642h-1.037V55h2.833v.642h-1.037v2.832h-.76v-2.832zM17.422 55h1.07l.809 2.389h.01L20.075 55h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V55zm5.66-27.992c4.256 1.523 6.896 3.327 6.896 7.649 0 2.612-.901 4.633-2.64 6.001-1.553 1.244-3.852 1.897-6.616 1.897-3.48 0-6.834-1.057-8.635-2.084l.932-5.814c2.112 1.244 5.342 2.207 7.299 2.207 1.584 0 2.454-.59 2.454-1.616 0-1.058-.901-1.742-3.603-2.706-4.193-1.523-6.771-3.327-6.771-7.556 0-2.332.838-4.26 2.453-5.597 1.553-1.275 3.728-1.959 6.337-1.959 3.696 0 6.367 1.027 7.671 1.649l-.931 5.752c-1.647-.808-4.038-1.71-6.368-1.71-1.273 0-1.988.497-1.988 1.368 0 1.026 1.243 1.68 3.51 2.519z"/><path id="e" d="M19.25 44h2.714v1.212c0 .188.152.343.339.343h26.394a.342.342 0 0 0 .339-.343V35.5H32.5c.333-3.333-.165-5.5-1.494-6.5h18.03v-3.212a.342.342 0 0 0-.339-.343H29.765c.361-1.01.57-1.924.627-2.742h18.644c1.5 0 2.714 1.228 2.714 2.742v20.11c0 1.514-1.213 2.742-2.714 2.742H21.964c-1.5 0-2.714-1.228-2.714-2.742V44zm-3.79 9.642h-1.037V53h2.833v.642h-1.037v2.832h-.76v-2.832zM17.422 53h1.07l.809 2.389h.01L20.075 53h1.07v3.474h-.711v-2.462h-.01l-.847 2.462h-.586l-.848-2.438h-.01v2.438h-.711V53zm5.66-27.992c4.256 1.523 6.896 3.327 6.896 7.649 0 2.612-.901 4.633-2.64 6.001-1.553 1.244-3.852 1.897-6.616 1.897-3.48 0-6.834-1.057-8.635-2.084l.932-5.814c2.112 1.244 5.342 2.207 7.299 2.207 1.584 0 2.454-.59 2.454-1.616 0-1.058-.901-1.742-3.603-2.706-4.193-1.523-6.771-3.327-6.771-7.556 0-2.332.838-4.26 2.453-5.597 1.553-1.275 3.728-1.959 6.337-1.959 3.696 0 6.367 1.027 7.671 1.649l-.931 5.752c-1.647-.808-4.038-1.71-6.368-1.71-1.273 0-1.988.497-1.988 1.368 0 1.026 1.243 1.68 3.51 2.519z"/></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.916L14 17.5l13.818 5.203h9.432L48 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_stripe/static/src/img/stripe_icon.png b/addons/payment_stripe/static/src/img/stripe_icon.png Binary files differnew file mode 100644 index 00000000..79e4e3cb --- /dev/null +++ b/addons/payment_stripe/static/src/img/stripe_icon.png diff --git a/addons/payment_stripe/static/src/js/payment_form.js b/addons/payment_stripe/static/src/js/payment_form.js new file mode 100644 index 00000000..4a11e289 --- /dev/null +++ b/addons/payment_stripe/static/src/js/payment_form.js @@ -0,0 +1,212 @@ +odoo.define('payment_stripe.payment_form', function (require) { +"use strict"; + +var ajax = require('web.ajax'); +var core = require('web.core'); +var Dialog = require('web.Dialog'); +var PaymentForm = require('payment.payment_form'); + +var qweb = core.qweb; +var _t = core._t; + +ajax.loadXML('/payment_stripe/static/src/xml/stripe_templates.xml', qweb); + +PaymentForm.include({ + + willStart: function () { + return this._super.apply(this, arguments).then(function () { + return ajax.loadJS("https://js.stripe.com/v3/"); + }) + }, + + //-------------------------------------------------------------------------- + // Private + //-------------------------------------------------------------------------- + + /** + * called to create payment method object for credit card/debit card. + * + * @private + * @param {Object} stripe + * @param {Object} formData + * @param {Object} card + * @param {Boolean} addPmEvent + * @returns {Promise} + */ + _createPaymentMethod: function (stripe, formData, card, addPmEvent) { + if (addPmEvent) { + return this._rpc({ + route: '/payment/stripe/s2s/create_setup_intent', + params: {'acquirer_id': formData.acquirer_id} + }).then(function(intent_secret) { + return stripe.handleCardSetup(intent_secret, card); + }); + } else { + return stripe.createPaymentMethod({ + type: 'card', + card: card, + }); + } + }, + + /** + * called when clicking on pay now or add payment event to create token for credit card/debit card. + * + * @private + * @param {Event} ev + * @param {DOMElement} checkedRadio + * @param {Boolean} addPmEvent + */ + _createStripeToken: function (ev, $checkedRadio, addPmEvent) { + var self = this; + if (ev.type === 'submit') { + var button = $(ev.target).find('*[type="submit"]')[0] + } else { + var button = ev.target; + } + this.disableButton(button); + var acquirerID = this.getAcquirerIdFromRadio($checkedRadio); + var acquirerForm = this.$('#o_payment_add_token_acq_' + acquirerID); + var inputsForm = $('input', acquirerForm); + if (this.options.partnerId === undefined) { + console.warn('payment_form: unset partner_id when adding new token; things could go wrong'); + } + + var formData = self.getFormData(inputsForm); + var stripe = this.stripe; + var card = this.stripe_card_element; + if (card._invalid) { + return; + } + this._createPaymentMethod(stripe, formData, card, addPmEvent).then(function(result) { + if (result.error) { + return Promise.reject({"message": {"data": { "arguments": [result.error.message]}}}); + } else { + const paymentMethod = addPmEvent ? result.setupIntent.payment_method : result.paymentMethod.id; + _.extend(formData, {"payment_method": paymentMethod}); + return self._rpc({ + route: formData.data_set, + params: formData, + }); + } + }).then(function(result) { + if (addPmEvent) { + if (formData.return_url) { + window.location = formData.return_url; + } else { + window.location.reload(); + } + } else { + $checkedRadio.val(result.id); + self.el.submit(); + } + }).guardedCatch(function (error) { + // We don't want to open the Error dialog since + // we already have a container displaying the error + if (error.event) { + error.event.preventDefault(); + } + // if the rpc fails, pretty obvious + self.enableButton(button); + self.displayError( + _t('Unable to save card'), + _t("We are not able to add your payment method at the moment. ") + + self._parseError(error) + ); + }); + }, + /** + * called when clicking a Stripe radio if configured for s2s flow; instanciates the card and bind it to the widget. + * + * @private + * @param {DOMElement} checkedRadio + */ + _bindStripeCard: function ($checkedRadio) { + var acquirerID = this.getAcquirerIdFromRadio($checkedRadio); + var acquirerForm = this.$('#o_payment_add_token_acq_' + acquirerID); + var inputsForm = $('input', acquirerForm); + var formData = this.getFormData(inputsForm); + var stripe = Stripe(formData.stripe_publishable_key); + var element = stripe.elements(); + var card = element.create('card', {hidePostalCode: true}); + card.mount('#card-element'); + card.on('ready', function(ev) { + card.focus(); + }); + card.addEventListener('change', function (event) { + var displayError = document.getElementById('card-errors'); + displayError.textContent = ''; + if (event.error) { + displayError.textContent = event.error.message; + } + }); + this.stripe = stripe; + this.stripe_card_element = card; + }, + /** + * destroys the card element and any stripe instance linked to the widget. + * + * @private + */ + _unbindStripeCard: function () { + if (this.stripe_card_element) { + this.stripe_card_element.destroy(); + } + this.stripe = undefined; + this.stripe_card_element = undefined; + }, + /** + * @override + */ + updateNewPaymentDisplayStatus: function () { + var $checkedRadio = this.$('input[type="radio"]:checked'); + + if ($checkedRadio.length !== 1) { + return; + } + var provider = $checkedRadio.data('provider') + if (provider === 'stripe') { + // always re-init stripe (in case of multiple acquirers for stripe, make sure the stripe instance is using the right key) + this._unbindStripeCard(); + if (this.isNewPaymentRadio($checkedRadio)) { + this._bindStripeCard($checkedRadio); + } + } + return this._super.apply(this, arguments); + }, + + //-------------------------------------------------------------------------- + // Handlers + //-------------------------------------------------------------------------- + + /** + * @override + */ + payEvent: function (ev) { + ev.preventDefault(); + var $checkedRadio = this.$('input[type="radio"]:checked'); + + // first we check that the user has selected a stripe as s2s payment method + if ($checkedRadio.length === 1 && this.isNewPaymentRadio($checkedRadio) && $checkedRadio.data('provider') === 'stripe') { + return this._createStripeToken(ev, $checkedRadio); + } else { + return this._super.apply(this, arguments); + } + }, + /** + * @override + */ + addPmEvent: function (ev) { + ev.stopPropagation(); + ev.preventDefault(); + var $checkedRadio = this.$('input[type="radio"]:checked'); + + // first we check that the user has selected a stripe as add payment method + if ($checkedRadio.length === 1 && this.isNewPaymentRadio($checkedRadio) && $checkedRadio.data('provider') === 'stripe') { + return this._createStripeToken(ev, $checkedRadio, true); + } else { + return this._super.apply(this, arguments); + } + }, +}); +}); diff --git a/addons/payment_stripe/static/src/js/payment_processing.js b/addons/payment_stripe/static/src/js/payment_processing.js new file mode 100644 index 00000000..f98cd05a --- /dev/null +++ b/addons/payment_stripe/static/src/js/payment_processing.js @@ -0,0 +1,48 @@ +odoo.define('payment_stripe.processing', function (require) { +'use strict'; + +var ajax = require('web.ajax'); +var rpc = require('web.rpc') +var publicWidget = require('web.public.widget'); + +var PaymentProcessing = publicWidget.registry.PaymentProcessing; + +return PaymentProcessing.include({ + init: function () { + this._super.apply(this, arguments); + this._authInProgress = false; + }, + willStart: function () { + return this._super.apply(this, arguments).then(function () { + return ajax.loadJS("https://js.stripe.com/v3/"); + }) + }, + _stripeAuthenticate: function (tx) { + var stripe = Stripe(tx.stripe_publishable_key); + return stripe.handleCardPayment(tx.stripe_payment_intent_secret) + .then(function(result) { + if (result.error) { + return Promise.reject({"message": {"data": { "message": result.error.message}}}); + } + return rpc.query({ + route: '/payment/stripe/s2s/process_payment_intent', + params: _.extend({}, result.paymentIntent, {reference: tx.reference}), + }); + }).then(function() { + window.location = '/payment/process'; + }).guardedCatch(function () { + this._authInProgress = false; + }); + }, + processPolledData: function(transactions) { + this._super.apply(this, arguments); + for (var itx=0; itx < transactions.length; itx++) { + var tx = transactions[itx]; + if (tx.acquirer_provider === 'stripe' && tx.state === 'pending' && tx.stripe_payment_intent_secret && !this._authInProgress) { + this._authInProgress = true; + this._stripeAuthenticate(tx); + } + } + }, +}); +});
\ No newline at end of file diff --git a/addons/payment_stripe/static/src/js/stripe.js b/addons/payment_stripe/static/src/js/stripe.js new file mode 100644 index 00000000..4868c9db --- /dev/null +++ b/addons/payment_stripe/static/src/js/stripe.js @@ -0,0 +1,81 @@ +odoo.define('payment_stripe.stripe', function (require) { +"use strict"; + +var ajax = require('web.ajax'); +var core = require('web.core'); + +var qweb = core.qweb; +var _t = core._t; + +ajax.loadXML('/payment_stripe/static/src/xml/stripe_templates.xml', qweb); + +if ($.blockUI) { + // our message needs to appear above the modal dialog + $.blockUI.defaults.baseZ = 2147483647; //same z-index as StripeCheckout + $.blockUI.defaults.css.border = '0'; + $.blockUI.defaults.css["background-color"] = ''; + $.blockUI.defaults.overlayCSS["opacity"] = '0.9'; +} + +require('web.dom_ready'); +if (!$('.o_payment_form').length) { + return Promise.reject("DOM doesn't contain '.o_payment_form'"); +} + +var observer = new MutationObserver(function (mutations, observer) { + for (var i = 0; i < mutations.length; ++i) { + for (var j = 0; j < mutations[i].addedNodes.length; ++j) { + if (mutations[i].addedNodes[j].tagName.toLowerCase() === "form" && mutations[i].addedNodes[j].getAttribute('provider') === 'stripe') { + _redirectToStripeCheckout($(mutations[i].addedNodes[j])); + } + } + } +}); + +function displayError(message) { + var wizard = $(qweb.render('stripe.error', {'msg': message || _t('Payment error')})); + wizard.appendTo($('body')).modal({'keyboard': true}); + if ($.blockUI) { + $.unblockUI(); + } + $("#o_payment_form_pay").removeAttr('disabled'); +} + + +function _redirectToStripeCheckout(providerForm) { + // Open Checkout with further options + if ($.blockUI) { + var msg = _t("Just one more second, We are redirecting you to Stripe..."); + $.blockUI({ + 'message': '<h2 class="text-white"><img src="/web/static/src/img/spin.png" class="fa-pulse"/>' + + ' <br />' + msg + + '</h2>' + }); + } + + var paymentForm = $('.o_payment_form'); + if (!paymentForm.find('i').length) { + paymentForm.append('<i class="fa fa-spinner fa-spin"/>'); + paymentForm.attr('disabled', 'disabled'); + } + + var _getStripeInputValue = function (name) { + return providerForm.find('input[name="' + name + '"]').val(); + }; + + var stripe = Stripe(_getStripeInputValue('stripe_key')); + + stripe.redirectToCheckout({ + sessionId: _getStripeInputValue('session_id') + }).then(function (result) { + if (result.error) { + displayError(result.error.message); + } + }); +} + +$.getScript("https://js.stripe.com/v3/", function (data, textStatus, jqxhr) { + observer.observe(document.body, {childList: true}); + _redirectToStripeCheckout($('form[provider="stripe"]')); +}); +}); diff --git a/addons/payment_stripe/static/src/xml/stripe_templates.xml b/addons/payment_stripe/static/src/xml/stripe_templates.xml new file mode 100644 index 00000000..97fd4c97 --- /dev/null +++ b/addons/payment_stripe/static/src/xml/stripe_templates.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<templates id="template" xml:space="preserve"> + <t t-name="stripe.error"> + <div role="dialog" class="modal fade"> + <div class="modal-dialog"> + <div class="modal-content"> + <header class="modal-header"> + <h4 class="modal-title">Error</h4> + <button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button> + </header> + <main class="modal-body"> + <t t-esc="msg"></t> + </main> + <footer class="modal-footer"> + <a role="button" href="#" class="btn btn-link btn-sm" data-dismiss="modal">Close</a> + </footer> + </div> + </div> + </div> + </t> +</templates> diff --git a/addons/payment_stripe/tests/__init__.py b/addons/payment_stripe/tests/__init__.py new file mode 100644 index 00000000..228d5775 --- /dev/null +++ b/addons/payment_stripe/tests/__init__.py @@ -0,0 +1,2 @@ +# -*- coding: utf-8 -*- +from . import test_stripe diff --git a/addons/payment_stripe/tests/stripe_mocks.py b/addons/payment_stripe/tests/stripe_mocks.py new file mode 100644 index 00000000..6364fbf1 --- /dev/null +++ b/addons/payment_stripe/tests/stripe_mocks.py @@ -0,0 +1,31 @@ +checkout_session_signature = 't=1591264652,v1=1f0d3e035d8de956396b1d91727267fbbf483253e7702e46357b4d2bfa078ba4,v0=20d76342f4704d49f8f89db03acff7cf04afa48ca70a22d608b4649b332c1f51' +checkout_session_body = b'{\n "id": "evt_1GqFpHAlCFm536g8NYSLoccF",\n "object": "event",\n "api_version": "2019-05-16",\n "created": 1591264651,\n "data": {\n "object": {\n "id": "cs_test_SI8yz61JCZ4gxd7Z5oGfQSn9ZbubC6SZF3bJTxvy2PVqSd3dzbDV1kyd",\n "object": "checkout.session",\n "billing_address_collection": null,\n "cancel_url": "https://httpbin.org/post",\n "client_reference_id": null,\n "customer": "cus_HP3xLqXMIwBfTg",\n "customer_email": null,\n "display_items": [\n {\n "amount": 1500,\n "currency": "usd",\n "custom": {\n "description": "comfortable cotton t-shirt",\n "images": null,\n "name": "t-shirt"\n },\n "quantity": 2,\n "type": "custom"\n }\n ],\n "livemode": false,\n "locale": null,\n "metadata": {\n },\n "mode": "payment",\n "payment_intent": "pi_1GqFpCAlCFm536g8HsBSvSEt",\n "payment_method_types": [\n "card"\n ],\n "setup_intent": null,\n "shipping": null,\n "shipping_address_collection": null,\n "submit_type": null,\n "subscription": null,\n "success_url": "https://httpbin.org/post"\n }\n },\n "livemode": false,\n "pending_webhooks": 2,\n "request": {\n "id": null,\n "idempotency_key": null\n },\n "type": "checkout.session.completed"\n}' + +checkout_session_object = {'billing_address_collection': None, + 'cancel_url': 'https://httpbin.org/post', + 'client_reference_id': "tx_ref_test_handle_checkout_webhook", + 'customer': 'cus_HOgyjnjdgY6pmY', + 'customer_email': None, + 'display_items': [{'amount': 1500, + 'currency': 'usd', + 'custom': {'description': 'comfortable ' + 'cotton ' + 't-shirt', + 'images': None, + 'name': 't-shirt'}, + 'quantity': 2, + 'type': 'custom'}], + 'id': 'cs_test_sbTG0yGwTszAqFUP8Ulecr1bUwEyQEo29M8taYvdP7UA6Qr37qX6uA6w', + 'livemode': False, + 'locale': None, + 'metadata': {}, + 'mode': 'payment', + 'object': 'checkout.session', + 'payment_intent': 'pi_1GptaRAlCFm536g8AfCF6Zi0', + 'payment_method_types': ['card'], + 'setup_intent': None, + 'shipping': None, + 'shipping_address_collection': None, + 'submit_type': None, + 'subscription': None, + 'success_url': 'https://httpbin.org/post'} diff --git a/addons/payment_stripe/tests/test_stripe.py b/addons/payment_stripe/tests/test_stripe.py new file mode 100644 index 00000000..2ac28193 --- /dev/null +++ b/addons/payment_stripe/tests/test_stripe.py @@ -0,0 +1,318 @@ +# -*- coding: utf-8 -*- +import odoo +from odoo import fields +from odoo.exceptions import ValidationError +from odoo.addons.payment.tests.common import PaymentAcquirerCommon +from unittest.mock import patch +from . import stripe_mocks +from ..models.payment import STRIPE_SIGNATURE_AGE_TOLERANCE +from odoo.tools import mute_logger + + +class StripeCommon(PaymentAcquirerCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + cls.stripe = cls.env.ref('payment.payment_acquirer_stripe') + cls.stripe.write({ + 'stripe_secret_key': 'sk_test_KJtHgNwt2KS3xM7QJPr4O5E8', + 'stripe_publishable_key': 'pk_test_QSPnimmb4ZhtkEy3Uhdm4S6J', + 'stripe_webhook_secret': 'whsec_vG1fL6CMUouQ7cObF2VJprLVXT5jBLxB', + 'state': 'test', + }) + cls.token = cls.env['payment.token'].create({ + 'name': 'Test Card', + 'acquirer_id': cls.stripe.id, + 'acquirer_ref': 'cus_G27S7FqQ2w3fuH', + 'stripe_payment_method': 'pm_1FW3DdAlCFm536g8eQoSCejY', + 'partner_id': cls.buyer.id, + 'verified': True, + }) + cls.ideal_icon = cls.env.ref("payment.payment_icon_cc_ideal") + cls.bancontact_icon = cls.env.ref("payment.payment_icon_cc_bancontact") + cls.p24_icon = cls.env.ref("payment.payment_icon_cc_p24") + cls.eps_icon = cls.env.ref("payment.payment_icon_cc_eps") + cls.giropay_icon = cls.env.ref("payment.payment_icon_cc_giropay") + cls.all_icons = [cls.ideal_icon, cls.bancontact_icon, cls.p24_icon, cls.eps_icon, cls.giropay_icon] + cls.stripe.write({'payment_icon_ids': [(5, 0, 0)]}) + + +@odoo.tests.tagged('post_install', '-at_install', '-standard', 'external') +class StripeTest(StripeCommon): + + def run(self, result=None): + with mute_logger('odoo.addons.payment.models.payment_acquirer', 'odoo.addons.payment_stripe.models.payment'): + StripeCommon.run(self, result) + + def test_10_stripe_s2s(self): + self.assertEqual(self.stripe.state, 'test', 'test without test environment') + # Create transaction + tx = self.env['payment.transaction'].create({ + 'reference': 'stripe_test_10_%s' % fields.datetime.now().strftime('%Y%m%d_%H%M%S'), + 'currency_id': self.currency_euro.id, + 'acquirer_id': self.stripe.id, + 'partner_id': self.buyer_id, + 'payment_token_id': self.token.id, + 'type': 'server2server', + 'amount': 115.0 + }) + tx.with_context(off_session=True).stripe_s2s_do_transaction() + + # Check state + self.assertEqual(tx.state, 'done', 'Stripe: Transcation has been discarded.') + + def test_20_stripe_form_render(self): + self.assertEqual(self.stripe.state, 'test', 'test without test environment') + + # ---------------------------------------- + # Test: button direct rendering + # ---------------------------------------- + + # render the button + self.stripe.render('SO404', 320.0, self.currency_euro.id, values=self.buyer_values).decode('utf-8') + + def test_30_stripe_form_management(self): + self.assertEqual(self.stripe.state, 'test', 'test without test environment') + ref = 'stripe_test_30_%s' % fields.datetime.now().strftime('%Y%m%d_%H%M%S') + tx = self.env['payment.transaction'].create({ + 'amount': 4700.0, + 'acquirer_id': self.stripe.id, + 'currency_id': self.currency_euro.id, + 'reference': ref, + 'partner_name': 'Norbert Buyer', + 'partner_country_id': self.country_france.id, + 'payment_token_id': self.token.id, + }) + res = tx.with_context(off_session=True)._stripe_create_payment_intent() + tx.stripe_payment_intent = res.get('payment_intent') + + # typical data posted by Stripe after client has successfully paid + stripe_post_data = {'reference': ref} + # validate it + tx.form_feedback(stripe_post_data, 'stripe') + self.assertEqual(tx.state, 'done', 'Stripe: validation did not put tx into done state') + self.assertEqual(tx.acquirer_reference, stripe_post_data.get('id'), 'Stripe: validation did not update tx id') + + def test_add_available_payment_method_types_local_enabled(self): + self.stripe.payment_icon_ids = [(6, 0, [i.id for i in self.all_icons])] + tx_values = { + 'billing_partner_country': self.env.ref('base.be'), + 'currency': self.env.ref('base.EUR'), + 'type': 'form' + } + stripe_session_data = {} + + self.stripe._add_available_payment_method_types(stripe_session_data, tx_values) + + actual = {pmt for key, pmt in stripe_session_data.items() if key.startswith('payment_method_types')} + self.assertEqual({'card', 'bancontact'}, actual) + + def test_add_available_payment_method_types_local_enabled_2(self): + self.stripe.payment_icon_ids = [(6, 0, [i.id for i in self.all_icons])] + tx_values = { + 'billing_partner_country': self.env.ref('base.pl'), + 'currency': self.env.ref('base.PLN'), + 'type': 'form' + } + stripe_session_data = {} + + self.stripe._add_available_payment_method_types(stripe_session_data, tx_values) + + actual = {pmt for key, pmt in stripe_session_data.items() if key.startswith('payment_method_types')} + self.assertEqual({'card', 'p24'}, actual) + + def test_add_available_payment_method_types_pmt_does_not_exist(self): + self.bancontact_icon.unlink() + tx_values = { + 'billing_partner_country': self.env.ref('base.be'), + 'currency': self.env.ref('base.EUR'), + 'type': 'form' + } + stripe_session_data = {} + + self.stripe._add_available_payment_method_types(stripe_session_data, tx_values) + + actual = {pmt for key, pmt in stripe_session_data.items() if key.startswith('payment_method_types')} + self.assertEqual({'card', 'bancontact'}, actual) + + def test_add_available_payment_method_types_local_disabled(self): + tx_values = { + 'billing_partner_country': self.env.ref('base.be'), + 'currency': self.env.ref('base.EUR'), + 'type': 'form' + } + stripe_session_data = {} + + self.stripe._add_available_payment_method_types(stripe_session_data, tx_values) + + actual = {pmt for key, pmt in stripe_session_data.items() if key.startswith('payment_method_types')} + self.assertEqual({'card'}, actual) + + def test_add_available_payment_method_types_local_all_but_bancontact(self): + self.stripe.payment_icon_ids = [(4, icon.id) for icon in self.all_icons if icon.name.lower() != 'bancontact'] + tx_values = { + 'billing_partner_country': self.env.ref('base.be'), + 'currency': self.env.ref('base.EUR'), + 'type': 'form' + } + stripe_session_data = {} + + self.stripe._add_available_payment_method_types(stripe_session_data, tx_values) + + actual = {pmt for key, pmt in stripe_session_data.items() if key.startswith('payment_method_types')} + self.assertEqual({'card'}, actual) + + def test_add_available_payment_method_types_recurrent(self): + tx_values = { + 'billing_partner_country': self.env.ref('base.be'), + 'currency': self.env.ref('base.EUR'), + 'type': 'form_save' + } + stripe_session_data = {} + + self.stripe._add_available_payment_method_types(stripe_session_data, tx_values) + + actual = {pmt for key, pmt in stripe_session_data.items() if key.startswith('payment_method_types')} + self.assertEqual({'card'}, actual) + + def test_discarded_webhook(self): + self.assertFalse(self.env['payment.acquirer']._handle_stripe_webhook(dict(type='payment.intent.succeeded'))) + + def test_handle_checkout_webhook_no_secret(self): + self.stripe.stripe_webhook_secret = None + + with self.assertRaises(ValidationError): + self.env['payment.acquirer']._handle_stripe_webhook(dict(type='checkout.session.completed')) + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_handle_checkout_webhook(self, dt, request): + # pass signature verification + dt.utcnow.return_value.timestamp.return_value = 1591264652 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body + # test setup + tx = self.env['payment.transaction'].create({ + 'reference': 'tx_ref_test_handle_checkout_webhook', + 'currency_id': self.currency_euro.id, + 'acquirer_id': self.stripe.id, + 'partner_id': self.buyer_id, + 'payment_token_id': self.token.id, + 'type': 'server2server', + 'amount': 30 + }) + res = tx.with_context(off_session=True)._stripe_create_payment_intent() + tx.stripe_payment_intent = res.get('payment_intent') + stripe_object = stripe_mocks.checkout_session_object + + actual = self.stripe._handle_checkout_webhook(stripe_object) + + self.assertTrue(actual) + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_handle_checkout_webhook_wrong_amount(self, dt, request): + # pass signature verification + dt.utcnow.return_value.timestamp.return_value = 1591264652 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body + # test setup + bad_tx = self.env['payment.transaction'].create({ + 'reference': 'tx_ref_test_handle_checkout_webhook_wrong_amount', + 'currency_id': self.currency_euro.id, + 'acquirer_id': self.stripe.id, + 'partner_id': self.buyer_id, + 'payment_token_id': self.token.id, + 'type': 'server2server', + 'amount': 10 + }) + wrong_amount_stripe_payment_intent = bad_tx.with_context(off_session=True)._stripe_create_payment_intent() + tx = self.env['payment.transaction'].create({ + 'reference': 'tx_ref_test_handle_checkout_webhook', + 'currency_id': self.currency_euro.id, + 'acquirer_id': self.stripe.id, + 'partner_id': self.buyer_id, + 'payment_token_id': self.token.id, + 'type': 'server2server', + 'amount': 30 + }) + tx.stripe_payment_intent = wrong_amount_stripe_payment_intent.get('payment_intent') + stripe_object = stripe_mocks.checkout_session_object + + actual = self.env['payment.acquirer']._handle_checkout_webhook(stripe_object) + + self.assertFalse(actual) + + def test_handle_checkout_webhook_no_odoo_tx(self): + stripe_object = stripe_mocks.checkout_session_object + + actual = self.stripe._handle_checkout_webhook(stripe_object) + + self.assertFalse(actual) + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_handle_checkout_webhook_no_stripe_tx(self, dt, request): + # pass signature verification + dt.utcnow.return_value.timestamp.return_value = 1591264652 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body + # test setup + self.env['payment.transaction'].create({ + 'reference': 'tx_ref_test_handle_checkout_webhook', + 'currency_id': self.currency_euro.id, + 'acquirer_id': self.stripe.id, + 'partner_id': self.buyer_id, + 'payment_token_id': self.token.id, + 'type': 'server2server', + 'amount': 30 + }) + stripe_object = stripe_mocks.checkout_session_object + + with self.assertRaises(ValidationError): + self.stripe._handle_checkout_webhook(stripe_object) + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_verify_stripe_signature(self, dt, request): + dt.utcnow.return_value.timestamp.return_value = 1591264652 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body + + actual = self.stripe._verify_stripe_signature() + + self.assertTrue(actual) + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_verify_stripe_signature_tampered_body(self, dt, request): + dt.utcnow.return_value.timestamp.return_value = 1591264652 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body.replace(b'1500', b'10') + + with self.assertRaises(ValidationError): + self.stripe._verify_stripe_signature() + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_verify_stripe_signature_wrong_secret(self, dt, request): + dt.utcnow.return_value.timestamp.return_value = 1591264652 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body + self.stripe.write({ + 'stripe_webhook_secret': 'whsec_vG1fL6CMUouQ7cObF2VJprL_TAMPERED', + }) + + with self.assertRaises(ValidationError): + self.stripe._verify_stripe_signature() + + @patch('odoo.addons.payment_stripe.models.payment.request') + @patch('odoo.addons.payment_stripe.models.payment.datetime') + def test_verify_stripe_signature_too_old(self, dt, request): + dt.utcnow.return_value.timestamp.return_value = 1591264652 + STRIPE_SIGNATURE_AGE_TOLERANCE + 1 + request.httprequest.headers = {'Stripe-Signature': stripe_mocks.checkout_session_signature} + request.httprequest.data = stripe_mocks.checkout_session_body + + with self.assertRaises(ValidationError): + self.stripe._verify_stripe_signature() diff --git a/addons/payment_stripe/views/payment_stripe_templates.xml b/addons/payment_stripe/views/payment_stripe_templates.xml new file mode 100644 index 00000000..95443d7e --- /dev/null +++ b/addons/payment_stripe/views/payment_stripe_templates.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data> + <template id="stripe_form"> + <input type="hidden" name="data_set" t-att-data-action-url="tx_url" data-remove-me=""/> + <input type='hidden' name='session_id' t-att-value='session_id'/> + <input type="hidden" name="stripe_key" t-att-value="acquirer.stripe_publishable_key"/> + <script type="text/javascript"> + odoo.define(function (require) { + var ajax = require('web.ajax'); + ajax.loadJS("/payment_stripe/static/src/js/stripe.js"); + }); + </script> + </template> + + <template id="stripe_s2s_form"> + <input type="hidden" name="data_set" value="/payment/stripe/s2s/create_json_3ds"/> + <input type="hidden" name="acquirer_id" t-att-value="id"/> + <input type="hidden" name="stripe_publishable_key" t-att-value="acq.sudo().stripe_publishable_key"/> + <input type="hidden" name="currency_id" t-att-value="currency_id"/> + <input t-if="return_url" type="hidden" name="return_url" t-att-value="return_url"/> + <input t-if="partner_id" type="hidden" name="partner_id" t-att-value="partner_id"/> + <input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> + <div id="payment-form"> + <div id="card-element" class="m-3"/> + <div id="card-errors" class="m-3 text-danger"/> + </div> + </template> + + <template id="assets_frontend" inherit_id="web.assets_frontend"> + <xpath expr="script[last()]" position="after"> + <script type="text/javascript" src="/payment_stripe/static/src/js/payment_form.js"></script> + <script type="text/javascript" src="/payment_stripe/static/src/js/payment_processing.js"></script> + + </xpath> + </template> + </data> +</odoo> diff --git a/addons/payment_stripe/views/payment_views.xml b/addons/payment_stripe/views/payment_views.xml new file mode 100644 index 00000000..74d9af04 --- /dev/null +++ b/addons/payment_stripe/views/payment_views.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="acquirer_form_stripe" model="ir.ui.view"> + <field name="name">payment.acquirer.form.inherit</field> + <field name="model">payment.acquirer</field> + <field name="inherit_id" ref="payment.acquirer_form"/> + <field name="arch" type="xml"> + <xpath expr='//group[@name="acquirer"]' position='inside'> + <group attrs="{'invisible': [('provider', '!=', 'stripe')]}"> + <field name="stripe_secret_key" attrs="{'required':[ ('provider', '=', 'stripe'), ('state', '!=', 'disabled')]}" password="True"/> + <field name="stripe_publishable_key" attrs="{'required':[ ('provider', '=', 'stripe'), ('state', '!=', 'disabled')]}" password="True"/> + <field name="stripe_webhook_secret" password="True"/> + </group> + </xpath> + <xpath expr='//group[@name="acquirer_config"]' position='after'> + <group attrs="{'invisible': [('provider', '!=', 'stripe')]}"> + <field name="stripe_image_url"/> + </group> + </xpath> + </field> + </record> +</odoo> |
